Hi All,
i am trying to parse e-mail invoices (html format) and put some variables like invoice nr, date and so on in a SharePoint online list.
This works very well.
One column in SharePoint online is configured as "currency" and of course does expect an int value (not a STRING)
Here comes the challenge: every parsed value is interpreted as STRING. so good so far.
The finally parsed value for the invoice amount is: 66,76 (as a STRING)
(the comma is correct and should not be changed nor removed - I am from Germany)
so I added a further initialize variable action with the following expression: int(variables('mny')) to convert the STRING into INT
Flow works without errors, but it removes the comma
with this configuration I received an expense of 6.676,00 โฌ instead of 66,76 โฌ in SharePoint Online.... not so good.
What am I doing wrong????? 😕

