I have been using the following expression in a flow to include a <br> in html whenever a field did not have a blank or null value:
if(greater(length(items('Apply_to_each')['Address2ndLine']),0),'<br>','')
Now, however, the flow complains that the function "length" expects it's parameter to be an array or a string, not of type 'Null'.
I don't know if the function "length" has changed in its requirements.
Can anyone suggest a suitable replacement test for string vs null values?