Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!