Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi all,
I have a column of type "Fixed Decimal Number". When i convert this to text, the decimal places dissapear.
What i want to achieve is to merge cells withou removing the decimals :
125,23 USD
2.558,58 EUR
558,00 EUR
When i merge the columns, decimal places dissapear (if ,0 or ,00 or ,5 or ...)
I want to keep the two decimal places always.
Anyone can help me ?
Regards
steve
Hi,
Add column
Number.ToText([AMOUNT],"F") &" "& [CURRENCY]
https://gorilla.bi/power-query/custom-format-strings/
or
= Table.CombineColumns(
Table.TransformColumns(
PrevStep,
{{"AMOUNT", each Number.ToText(_,"F")}}),
{"AMOUNT", "CURRENCY"},
Combiner.CombineTextByDelimiter(" ", QuoteStyle.None),
"Merged"
)
Stéphane
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
27 | |
25 | |
24 | |
13 | |
10 |
User | Count |
---|---|
25 | |
20 | |
20 | |
19 | |
11 |