Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
RilwanFlame
Helper III
Helper III

Different Datatype under same Column

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%

RilwanFlame_0-1647485119483.png

 

 

1 ACCEPTED SOLUTION
Tutu_in_YYC
Super User
Super User

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:

Tutu_in_YYC_0-1647495095448.png


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.

View solution in original post

1 REPLY 1
Tutu_in_YYC
Super User
Super User

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:

Tutu_in_YYC_0-1647495095448.png


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.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors