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 am trying to create a measure that takes the value over multiple measures and if the value over all four weeks has not changed to show "No Change" else "Change", example below the second row from the bottom should be the only one that has "No Change" as each week that value hasnt changed. I can do a normal IF but I am a bit stumped going across four weeks.
The other measures are as per below just the number of days between them change,
Any suggestions would be greatly appreciated.
Solved! Go to Solution.
You can brute force it with a combined statement
Pseudo code:
IF([Measure1]<>[Measure2] || [Measure1]<>[Measure3] || [Measure1]<>[Measure4],"Changed","Not changed")
You can brute force it with a combined statement
Pseudo code:
IF([Measure1]<>[Measure2] || [Measure1]<>[Measure3] || [Measure1]<>[Measure4],"Changed","Not changed")
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 |
---|---|
124 | |
79 | |
50 | |
38 | |
38 |
User | Count |
---|---|
195 | |
80 | |
70 | |
51 | |
42 |