문제

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 ?

도움이 되었습니까?

해결책

Solved it using the following syntax:

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

다른 팁

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
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top