Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I was hoping someone could help me out. i have a dataset in excel where a column has multiple datatype, like currency, text, decimals and %. Is there a way those datatype can remian as is in power BI under one column ?
or
if i have a Matrix table and i want to make some value have the dollar ($) currency in front and some have Percentage (%)
For example: Those circled in red i want them to be $1234 and those in yellow to be 1.23%
Solved! Go to Solution.
Hi RilwanFlame,
There is no way a column can have multiple data type. If it is a mix, it will usually end up a Text as data type.
But you can hack it using DAX by adding switch statements for different cases where you need different units, and you have to hard code them.
Check this example:
And this is the measure:
SWITCH =
VAR A = SELECTEDVALUE('Sales Territories'[Country])
RETURN
SWITCH(
TRUE(),
SELECTEDVALUE('Sales Territories'[Country]) = "Canada", [Percentage] * 100 & "%",
SELECTEDVALUE('Sales Territories'[Country]) = "Australia", "$" & [Total Sales]
)
If you want to do this, you need to separate your column with mixed data types into multiple columns with different types, or else you cannot aggregate the columns to create a measure.
Hi RilwanFlame,
There is no way a column can have multiple data type. If it is a mix, it will usually end up a Text as data type.
But you can hack it using DAX by adding switch statements for different cases where you need different units, and you have to hard code them.
Check this example:
And this is the measure:
SWITCH =
VAR A = SELECTEDVALUE('Sales Territories'[Country])
RETURN
SWITCH(
TRUE(),
SELECTEDVALUE('Sales Territories'[Country]) = "Canada", [Percentage] * 100 & "%",
SELECTEDVALUE('Sales Territories'[Country]) = "Australia", "$" & [Total Sales]
)
If you want to do this, you need to separate your column with mixed data types into multiple columns with different types, or else you cannot aggregate the columns to create a measure.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.