Hi All,
We have a Flow that requires to check if a Whole Number field is greater than or equal to 0 but it fails with the subject error as its returning a Null value if no numeric value has been set for the field. Looking into this I thought I can simply use the coalesce function which works and returns a 0 within my Compose Action but when the Compose Action is used within Condition Control Action I see get the same error even though the value is set to 0 by the Coalesce Formula. Does anyone know why this is happening and how to fix it?
Error: The template language function 'lessOrEquals' expects all of its parameters to be either integer or decimal numbers. Found invalid parameter types: 'Null'
Formula: coalesce(outputs('Get_Company')?['body/byt_totalusers'],int(0))