The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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.
Solved! Go to Solution.
Try wrapping an INT around the a.value
New Column = INT( table[number col] ) & " - " & table[UOM]
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.
Try wrapping an INT around the a.value
New Column = INT( table[number col] ) & " - " & table[UOM]
Doesnt this create an integer? I want the number col as text
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.
User | Count |
---|---|
68 | |
63 | |
59 | |
54 | |
28 |
User | Count |
---|---|
182 | |
81 | |
64 | |
46 | |
38 |