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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
bwhitlocksaxco
Frequent Visitor

Formula for Number to Text

Trying to create a new column that is a concatenation of a number(a.value) and text(UOM). Im pulling from a sql db on this. A problem Im having is my number is stored as a number. I tried to use convert(varchar,a.value) but the output is 12.000000000, I need to slice out the zero's to make this 12 as text so I can merge with my UOM to get 12 oz. 

2 ACCEPTED SOLUTIONS
Phil_Seamark
Employee
Employee

Hi @bwhitlocksaxco

 

Try wrapping an INT around the a.value

 

New Column = INT( table[number col] ) & " - " & table[UOM]

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

Hi @bwhitlocksaxco

 

It does create an integer, but that is just to strip the decimals.  The & operator then implicitly converts the integer to text by concatenating it to a text value.


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

View solution in original post

3 REPLIES 3
Phil_Seamark
Employee
Employee

Hi @bwhitlocksaxco

 

Try wrapping an INT around the a.value

 

New Column = INT( table[number col] ) & " - " & table[UOM]

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Doesnt this create an integer? I want the number col as text

Hi @bwhitlocksaxco

 

It does create an integer, but that is just to strip the decimals.  The & operator then implicitly converts the integer to text by concatenating it to a text value.


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.