Forum Discussion
cheezy
2 years agoHelper I
column number sequence reversal
see below - data comes in from our source system as in the first two columns - for example the most recent audit for ID = 1 is 4, ID =2 is 2 and ID = 3 is 6 what i require is the sequence reversed ,...
- 2 years ago
Hi cheezy -Can you please try the below code , i have checked with the above data shared
getting the required output as expected
Measure:
Required =
VAR MaxSequence = CALCULATE(MAX('YourTable'[Audit_Sequence]), ALLEXCEPT('YourTable', 'YourTable'[ID]))RETURNMaxSequence-MAX('YourTable'[Audit_Sequence]) +1Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Anonymous
2 years agoNot applicable
Your solutions is great rajendraongole1 , and it worked!
Hi, cheezy
Has the solution provided by rajendraongole1 solved your current problem? I've found that the solution provided by rajendraongole1 works well as a measure.
Best Regards
Jianpeng Li