Hi,
I'm trying to write an expression that will extract the value of the 23.24M (it's a variable and can be changed) in the following sentence and add it to an excel sheet -
"Bandwidth Limit Exceeded: Your current bandwidth usage has reached 23.24M, surpassing your contract limit of 20M."
I've created the following expression - trim(split(split(variables('inputSentence'), 'has reached ')[1], ',')[0])
But I got the following error -
Flow save failed with code 'InvalidVariableOperation' and message 'The inputs of workflow run action 'Add_a_row_into_a_table' of type 'OpenApiConnection' are not valid. The variable 'inputSentence' must be initialized before it can be used inside action 'Add_a_row_into_a_table'.'.
Any idea why? Any help?