Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi All,
I have 2 WHOLE NUMBER COLUMN LIKE A and B. I want To Create another TEXT COLUMN Like THIS: A/B
So if
A B A/B
1 3 1/3
4 6 4/6
A/B should return TEXT VALUE as above
Thanks
Deepak
Solved! Go to Solution.
Hi @drrai66
I would go into the Power Query Editor, then click on Add Column in the Ribbon.
Then click on Custom Column and put in the following code below.
NOTE: This will work as long as your columns A and B are set to a data type of Whole Number
Text.From([A]) & "/" & Text.From([B])
Which then has the following result.
Hi @drrai66,
You can use below dax formula to achieve the desired result.
A/B = Data[A] & "/" & Data[B]
Thanks,
Rahul
Hi @drrai66,
You can use below dax formula to achieve the desired result.
A/B = Data[A] & "/" & Data[B]
Thanks,
Rahul
Hi @drrai66
I would go into the Power Query Editor, then click on Add Column in the Ribbon.
Then click on Custom Column and put in the following code below.
NOTE: This will work as long as your columns A and B are set to a data type of Whole Number
Text.From([A]) & "/" & Text.From([B])
Which then has the following result.
Worked Perfectly!!!
Actually you showed me a way. I did like this
Column =[A] & "/" & [B]
Thnaks
Deepak
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
123 | |
78 | |
49 | |
38 | |
37 |
User | Count |
---|---|
196 | |
80 | |
70 | |
51 | |
42 |