Pergunta

I have a SharePoint list and created a powerapp.

In the SharePoint list there is a field Kosten and the value 20 in powerapps looks like 20.0000000000000.

How can I change this to € 20,00 ?

Foi útil?

Solução

Solved it using the following syntax:

" € " & Text(Value(ThisItem.TotaalKosten; "en-US"); "[$-nl-NL]0,00") 

Outras dicas

Try formula like:

"€" & Text(Round(20.43200000000000,2), "[$-fr-FR]# ###,##", "fr-FR")

Output: €20,43

References:

  1. Round, RoundDown, and RoundUp functions in Power Apps
  2. Text function in Power Apps - Global Apps
Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top