Forum Discussion
Duplicates using Date and Duplicate/Original Slicer
- 4 years ago
Hi, ashu710
Try this:result = VAR _originalValues = DISTINCTCOUNT( yourTable[valuesColumn] ) VAR _duplicateValues = COUNT( yourTable[valuesColumn] ) - _originalValues VAR _if = SWITCH( TRUE(), SELECTEDVALUE( 'theTable'[Slicer] ) = "Original", _originalValues, SELECTEDVALUE( 'theTable'[Slicer] ) = "Duplicate", _duplicateValues ) RETURN _ifBest Regards,
Community Support Team _ Zeon ZhengIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Wow, didn't fancy waiting a few hours for your answer on the other thread, huh?
I'll close off the old thread as you now have this one open as well.
FWIW, I'd be interested to know why you need to add this amount of complexity into your reporting when 99% of the time just displaying the two measures I gave you in the other thread would more than suffice.
Pete
Hi BA_Pete there's reporting that needs to be done on an urgent basis. I had already presented the solution you sent to my manager, and he thought that this would be an ideal solution. A few more calculations would be based off those measures, which I am unable to present using the given solution. Thanks.
Ashu