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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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