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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Balkrishnan
Helper II
Helper II

Column with two data types

I have an Excel Data set with a column like below

Rent

4,525

3,750

ABC

4,100

2,500

When i load this data into Powe BI it is displayed without comma like below

Rent

4525

3750

ABC

4100

2500

I tried different formating but could not have data with numeric(with Comma)  and text. Please let me know any quick solution.

1 ACCEPTED SOLUTION
jdbuchanan71
Super User
Super User

Hello @Balkrishnan 

The problem you are running into is excel does not actually store the comma.  4,525 is stored as 4525 and formatted with the comma.  We can add a column to your table to format the numbers correctly though.

Rent Formatted =
IF (
    ISERROR ( VALUE ( Sheet1[Rent] ) ),
    Sheet1[Rent],
    FORMAT ( VALUE ( Sheet1[Rent] ), "#,#" )
)

RentFormatted.jpg

 

 

View solution in original post

3 REPLIES 3
jdbuchanan71
Super User
Super User

Hello @Balkrishnan 

The problem you are running into is excel does not actually store the comma.  4,525 is stored as 4525 and formatted with the comma.  We can add a column to your table to format the numbers correctly though.

Rent Formatted =
IF (
    ISERROR ( VALUE ( Sheet1[Rent] ) ),
    Sheet1[Rent],
    FORMAT ( VALUE ( Sheet1[Rent] ), "#,#" )
)

RentFormatted.jpg

 

 

edhans
Super User
Super User

You are going to have to split it into different columns. Power BI cannot have multiple data types in a column. It put that entire column as text. You can use the FORMAT() function to change how the numbers look, but they will still be text.

 

Without knowing the context of that data, I cannot provide a sample. I don't know what the ABC represents. It is a column heading, is every 3rd piece of data alpha numeric, etc.?



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

ABC is some dummy text i entered. My goal is to have comma in Numeric cell(4,350) and not to touch ABC(Some text Value)

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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