Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi there,
I want to replace the Full Stoptext in a text value with a comma, and roundup the numbers behind the comma by using DAX, but I don't know how...
Here is the text that I want to change, which is a measure:
608293.239524996T
The result that I want:
608293,24T
Thanks a lot,
Solved! Go to Solution.
HI @Anonymous
You can use the below syntax to add a column.
Column = FORMAT(VALUE(SUBSTITUTE(Table1[a], "T", "")), ".00") & "T"
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
HI @Anonymous
You can use the below syntax to add a column.
Column = FORMAT(VALUE(SUBSTITUTE(Table1[a], "T", "")), ".00") & "T"
Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you!
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
115 | |
112 | |
105 | |
95 | |
58 |
User | Count |
---|---|
174 | |
147 | |
136 | |
102 | |
82 |