Hello!!
I am trying to obtain certain data from an email body and convert them into different acronyms.
So far, I was able to extract the info I needed with a split formula, and identifying each parameter
This is the result I need.
This, so far, works perfectly.
But, and here is my main issue, is that I need to turn that result into an acronym.
For example: Aguas A S.A. has to be turned into ARA, Aguas Al into ADA, and so on.
I was using an if formula, adding an equals:
Solved! Go to Solution.
Hi @Fernanda ,
Your compose "Empresa" returns an array instead of a string.
You can use the join function to convert the result into a string and compare it:
if(equals(join(outputs('Compose'),','),'Aguas A S.A.'),'ARA','OTHER')
I have made test for your reference:
Best Regards,
Levi
Hi @Fernanda ,
Your compose "Empresa" returns an array instead of a string.
You can use the join function to convert the result into a string and compare it:
if(equals(join(outputs('Compose'),','),'Aguas A S.A.'),'ARA','OTHER')
I have made test for your reference:
Best Regards,
Levi
brilliant!!
thank you so much!!!
I had also tried with a initializing a variable thinking it could have convert the array into a string. This totally fixed my issue.
Thank you so so so much!!!
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
66 | |
58 | |
29 | |
27 | |
25 |