Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I have two columns named serial number and percent, i want to create two columns, where one column will contains percent of DS01 and other column will contain percent of DS02,
Need to do it in dax, because it is Direct query cant use Power query.
Thanks
Solved! Go to Solution.
In dAX new column
DS1= if([Serial Number] ='DS1', [Percent], blank())
DS2= if([Serial Number] ='DS2', [Percent], blank())
Direct query only support simple column
In dAX new column
DS1= if([Serial Number] ='DS1', [Percent], blank())
DS2= if([Serial Number] ='DS2', [Percent], blank())
Direct query only support simple column
User | Count |
---|---|
8 | |
8 | |
5 | |
5 | |
3 |