I'm trying to better understand the IF and ISEMPTY function on one of my flows. Currently I have a column with rows of numbers while some rows are blank. I'm trying to create a formula that within that column if there are any rows blank, then fill with 0. The current formula I have written out is:
IF ISEMPTY([Column ]) THEN 0 ELSE [Column ] ENDIF
However, the output doesn't seem to fill the blank rows and am unsure what the error may be on my end to fix the formula.