Hello!
I have been having a difficult time with this in my flow. I am trying to get a value from an email and place it on an excel row. However, some of these have the same name and is making it difficult for me to use the Split function. The email's format is as follows:
Wallet
Amount in dollars: 777
Amount in Euros: 999
Bank Account
Amount in dollars: 888
Amount in Euros: 555
Total Amount
Amount in dollars: 10101
Amount in Euros: 121212
The number I want is the 888 (the Amount in dollars under bank account). How can I obtain that number with a formula? I used the following formula for the first amount in dollars cause it was the first instance of it and it was easier. But if I use the same formula for the second instance of it, I will get the value from the first one. Basically, how can I differentiate the both? I have been using this for the first instance:
Trim(first(skip(split(first(split(body('Html_to_text'),'Amount in dollars')),'Amount in euros:'),1)))
Any help is appreciated!