Hi!
Jut in case it helps, I tend to use coalesce() expression in order to evaluate if a sharepoint column is empty, so I add two parameters inside:
-the column value
-a default text, just in case column value is null
So if i am inside an apply to each iterating all through the items from a 'Get item', and the column is named 'myColumn', the expression would be
coalesce(items('Apply_to_each')?['MyColumn'],'myDefault')
Now, you can use it in a condition (not very fficient if you are inside an Apply to Each), or, in some scenarios a default value works like a charm
Hope this helps