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")
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
User | Count |
---|---|
352 | |
99 | |
62 | |
50 | |
49 |
User | Count |
---|---|
353 | |
122 | |
84 | |
68 | |
62 |