@RobElliott wrote:
In the condition try adding an expression of PHONE is not equal to null. For the right hand box, click in it and go over to the right, select the Expression tab and type null and then select it to put it in the box.
Rob
Los Gallardos
Thanks for your input, Rob. I should have given a bit more context. My data source is a group of Visual Foxpro .dbf tables which I'm accessing through a SQL linked server. In the data, these string values return from the SQL connector as empty strings rather than null.
Edit: I've figured out how to do what I originally intended. Using length is effective, but to me empty() is a bit cleaner and should also cover an unforseen null condition.
empty(items('ForEachRow')?['CELLPHONE'])
I've decided to handle this by checking if the length of the string is greater than zero. That is working well, but I miss the advanced mode under the conditions.
length(items('ForEachRow')?['PHONE'])
