Hi, I hava a flow that scrapes my outlook calendar for bookings (made via MS Bookings) and returns the Service name as part of a populated export csv.
The Service names are:
For some reason, Outlook has changed the structure of itself and now instead of Service returning "Africa", it will return "Africa - Mr A Aaronson" (the name of the person who the meeting is with).
The formula I use to populate that field in my csv is:
"Service": "@{item()?['subject']}"
Is it possible to make this a simple LIKE formula... something along the lines of..
"Service": "@{item()? if(['subject'] like "America" then "America" else if(['subject'] like "Europe" then "Europe" else if(['subject'] like "Africa" then "Africa" else ""}"