I'm sure this is me being thick, so apologies in advance.
I have a flow that parses the contents of an email and inserts them in a new row in an excel table (in Sparepoint). One of the things parsed is "Amount Paid" e.g. 100.00 (pretty sure it's still a string at this point, but it goes into Excel fine).
In parallel I want to send an email when the value of Amount Paid is more than a specified amount. If I use a conditional action with "Amount Paid" I get an error about conflicting type (string vs integer).
How do I convert Amount Paid to a number (decimal?) so that it can be used in the conditional action.
I have tried to initialise a variable:
Name = AmountGiven
Type = float
expression =
float(outputs('Amount_Paid'))
Then use AmoutnGiven in the condition, but that hasn't worked (error is "Skipped"). I must be missing a step somewhere.
