Hi there,
I'm having a hard time to display / calculate a proper € value from some data, that is stored in a dataverse table. In one browser (country setting) it displaies the expected value. In another browser (different country setting) it displays a complete nonsense value. I expect that it has something todo with the way the value is getting formatted ( 1.000.000,00 €)... Any suggestions?
THX in advance,
Jan
Text(
Sum(
Filter(
Angebot;
Year(Now()) = Year(ThisRecord.'Mandat Start') And (ThisRecord.'Angebot Status' = 'Angebot Status (Angebot)'.Beauftragt Or ThisRecord.'Angebot Status' = 'Angebot Status (Angebot)'.'Beendet (Erfolgreich)')
);
ThisRecord.'Tagessatz (€)' /* this is a currency value in dataverse*/ * ThisRecord.'Volumen Bestellt (Tage)' // This is only a dezimal value
);
"[$-de-DE]###.###.##0,00 €"
)