The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
First, let me say the obligatory point, I'm new, I suck at this, mea culpa 🙂
I have one column that is a Decimal number format. I want to take this number, format the number with commas, e.g. 1,234,567.00 , and then output that into a seperate column as text.
Format() doesn't appear to go to text, and I can't find a way to pickup the display format from the other column. Answers? Questions about my Question?
/////// Background:
I want to combine multiple caluclated tables with different number formats into one Matrix, for a KPI report. I've got a UNION table going and go it all to happen, but I need more control over formats to give the table to the Executives.
Solved! Go to Solution.
Column = CONCATENATE(FORMAT([Column1],"Standard"),"")
Column = CONCATENATE(FORMAT([Column1],"Standard"),"")