Hi
I try to format a float from SQL-query to have thousands seperator. It must be dot (.) or space as sperator, not comma.
If I can choose the result would be like 5.432,00 or 5 432,00
5.5432 or 5 432 will also be better than today.
I have found format("%,d", amount) but that result in 5,432 wich don't work.
I did see a few other suggestions when googling, but didn't get them to work.
Does anyone have a solution for this?
Thank you in advance
- Amund