Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
My table is currently set up as below.
I need to match only the codes (if they match - there maybe a Code for Product A but not for B and Vice Versa) in which case it would leave a blank on the row for the Product which isnt in this example but it will be the case)
I would like the final result like this(ignore the colouring)
@lennox25 , Pivot Product column in Power Query, and then you can have column
if [A] <> null && [B] <> null then "True" else false
Pivot Data(Power Query) :https://www.youtube.com/watch?v=oKByyI09Bno&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=12
or create measures like
A= calculate(sum(Table[No Sold]), Filter(Table, Table[Product] = "A") )
B= calculate(sum(Table[No Sold]), Filter(Table, Table[Product] = "B") )
Result = if(isblank([A]) || isblank([B]) , False(), true() )
Use them in visual with other group bys
HI @amitchandak I know how to Pivot and have Pivoted but the column is not working its syntax error?
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
112 | |
112 | |
105 | |
94 | |
58 |
User | Count |
---|---|
174 | |
147 | |
136 | |
102 | |
82 |