Answers for "power bi to string DAX"

0

power bi to string DAX

Make sure you have the correct format string.
Try this: FORMAT(yourtable.[ColumnA], "#")

Eg.
String Measure = FORMAT(table1.[RegionID], "#") & " " &  table1.[RegionName]
Posted by: Guest on August-04-2021

Browse Popular Code Answers by Language