Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
The following is from a hierarchy. I have added a drop list object to my app and have created concatenate expression on the LocalServiceLine and Specialty field. However, I do not want to include any specialty with '-'. How can i do this.
Try like:
if(Len(Trim(Specialty))>0, LocalServiceLine & ': ' & Specialty)
unfortunately that then returns 0 and 1 in the display.
Could you share a qvw with your sample data?
Modify your expression in listbox expression as follows:
=if(not isnull(Specialty), LocalServiceLine & ': ' & Specialty)
=if(Specialty <> '-', LocalServiceLine & ': ' & Specialty)
Hope this will help you.
Regards,
UI
thanks UI that has worked.