Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
I have a fixed column named "Plan"and I want to compare its Restriction over 2 months and flag the rows which changed.
To make the question more clear, below are the details. Can someone please help ?
Plan name | Restriction for May'18 | Restriction for June'18 | Expected result |
A | PA | PA | No Change |
B | QA | ST | Change |
C | ST | PA | Change |
D | PA | ST | Change |
Solved! Go to Solution.
Use below DAX, before that Please create the Relation between both the Tables the Create the Calculated Column
Expected Results = IF ( 'Sales Data'[Customer Name Index] = RELATED ( 'Customer Data'[Customer Index] ), "No Change", "Change" )
Regards,
Chetan K
Use below DAX, before that Please create the Relation between both the Tables the Create the Calculated Column
Expected Results = IF ( 'Sales Data'[Customer Name Index] = RELATED ( 'Customer Data'[Customer Index] ), "No Change", "Change" )
Regards,
Chetan K
For this sample data, you can create a calculated column with the below formula.
COmparision=IF(Table1[Restriction for May'18]=Table1[Restriction for June'18], "No Change", "Change")
Thanks
Raj
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!