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
Anonymous
Not applicable

Cannot convert value 'a863597160' of type Text to type True/False.

Hi All,

 

I'm trying to create a new column based on existing columns.

Column1 is having values like "a863597160"---data type text

Column2 ia having values like "14592"----datatype decimal number

 

When I'm trying to create a new column by concatenating the existing 2 columns I'm getting error like "Cannot convert value 'a863597160' of type Text to type True/False."

 

I have tried the same by changeing data type of column2 to Text still I'm getting sameerror.

 

Can anyone help me here to resolve this.

 

Thanks,
Anand

1 ACCEPTED SOLUTION
v-luwang-msft
Community Support
Community Support

Hi @Anonymous ,

You could use the following dax :

Column = 'Table'[Column1]& "" &FORMAT([Column2], "General Number")

And you will get the below:

v-luwang-msft_0-1614157653526.png

 

 

 

Wish  it is helpful for you!

 

Best Regard

Lucien Wang

 

View solution in original post

6 REPLIES 6
v-luwang-msft
Community Support
Community Support

Hi @Anonymous ,

You could use the following dax :

Column = 'Table'[Column1]& "" &FORMAT([Column2], "General Number")

And you will get the below:

v-luwang-msft_0-1614157653526.png

 

 

 

Wish  it is helpful for you!

 

Best Regard

Lucien Wang

 

Vera_33
Resident Rockstar
Resident Rockstar

Hi @Anonymous 

 

How do you want to concat them? Like this?

 

Vera_33_0-1614057063517.png

 

Anonymous
Not applicable

No, I'm concatenating them in formula bar not in transform data tab.

You mean DAX not M?

 

Vera_33_0-1614057950621.png

 

Anonymous
Not applicable

Yes in DAX not in M

Anonymous
Not applicable

But this helps thanks.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

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!

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