Is it possible to use arguments in Power Fx Named Formulas?
For example, I need to translate a piece of text into English, with something like:
Translate("Alguna cosa", "en-US")
So, assuming I have a localization static collection, like:
| Text | Language |
| Alguna cosa | es-ES |
| Something | en-US |
How to define the Translate formula?
Tanslate = Loookup( Localization, Text = Arg1(text) && Language = Arg2(langCode)).Text