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.
Hi
Try this in backend.
Load *
From table where len(speciality)>0;
Regards
ASHFAQ
Hi
I need to include that that as its using the hierarchy method.
So you are trying to exclude null values is that correct ?
yeas in this example
in your expression in set analysis use {<Specialty = {"*"}>}
Then once can try in chart properties->Dimensions<tab>->select the required dimension->Suppress when value is null
I am using a list box object so no option for that.
Use where expression during load.
Where Specialty <> '';
Like I said I do not want to loose the null in the load script. How can i do this in the expression in the object. My expression in the list object is: = LocalServiceLine & ': ' & Specialty