i know there is a method to view itemid without ma...
# general
a
i know there is a method to view itemid without matrix parent included, anyone remember how?
a
Is this what you are looking for?
a
sorry should have clarified, I'd like to get rid of parent item name in a saved search
message has been deleted
for ex. would not like to see the 02xL or 02xR in the results
a
oh gosh, I've had a formula for an old client for the exact use case... I wish i've wrote it down somewhere. I basically try to find the location of the " : " and grabbed everything to the right of the " : ". Do you have sql expert in house? otherwise I can reach out to my old client to send over the formula to me bc I'm too lazy to figure it out again lol
a
found it! we do have one but was able to rely on trusty ol' google
case when instr({itemid},' : ')!=0 then substr({itemid},instr({itemid},' : ')+3) else {itemid} end
appreciate the help and info though! thanks
not sure if thats the exact same formula, but it returned the child item name exactly how i needed it. posted in case someone else needs 🙂
a
Yes, that looks like my old friend! lol Thanks for sharing it here!!!