Hi, I'm using a flow where I get a data from AI from pdf file where theorically I get a number using this expression:
replace(replace(replace(replace(outputs('Extract_information_from_forms')?['body/responsev2/predictionOutput/labels/Total/value'],',',''),'.',''), ' ',''),'$','')
and then y fill in Excel the numbers (yellow highlighted)

If I envolve this formula in IsFloat(myexpression) I get TRUE as values

But, when I try divide by 100 with this formula
div(replace(replace(replace(replace(outputs('Extract_information_from_forms')?['body/responsev2/predictionOutput/labels/Total/value'],',',''),'.',''), ' ',''),'$',''),100) I don't get syntax error but the flow finally give me an error and the data does not finish in the Excel

What am I doing wrong?
regards