Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello developers,
could anybody please give me any advice about my problem? Maybe someone already met this.
I have dimensions in listbox which are similar. That mean that some of them contains same words.
Customer
Customer Phone
Customer Country
When "Customer phone" is selected, in table "Customer" will appear as well. Is there any chance to use theese similar names in list box with dimensions? Now is this conditional expression in use:
=SubStringCount(Concat(Fields, '|'), 'Customer')
Thank you!
Hi mirek,
PFA, Hope Needful has been done.
Regards,
Nirmal.
Hi nirmal.j,
thank you for your reply. Your solution is one of possible solutions, but then appearance of dimensions is changed. I figured this solution:
Instead this:
=SubStringCount(Concat(Fields, '|'), 'Customer')
This:
=SubStringCount(Concat(Fields, '|')&'|', 'Customer|')
Have a nice day!