Forum Discussion
Activity Date - Filter Date & Logs
- Anonymous2 years ago
Hi fonsogijon
Unfortunately that I can not access this link:
But here I create a set of sample:
Then add a new table:
Table = GENERATESERIES(0,COUNTROWS('Activity'),1)Then add a slicer:
And a Measure created:
MEASURE = VAR _Slicer = MIN ( 'Table'[Value] ) VAR _currentID = SELECTEDVALUE ( Activity[DatasetId] ) VAR _Count = COUNTROWS ( FILTER ( ALLSELECTED ( 'Activity' ), 'Activity'[DatasetId] = _currentID ) ) RETURN IF ( _Count >= _Slicer, _Count, BLANK () )The result is as follow:
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi fonsogijon
Can you please share a pbix or some dummy data that keep the raw data structure with expected results? It should help us clarify your scenario and test to coding formula.
How to Get Your Question Answered Quickly
https://drive.google.com/file/d/1D7Jli-VMbBzN1a4fxB22xU1r2knFw_ow/view?usp=drive_link
Hope it works!
Thank you
- Anonymous2 years agoNot applicable
Hi fonsogijon
Unfortunately that I can not access this link:
But here I create a set of sample:
Then add a new table:
Table = GENERATESERIES(0,COUNTROWS('Activity'),1)Then add a slicer:
And a Measure created:
MEASURE = VAR _Slicer = MIN ( 'Table'[Value] ) VAR _currentID = SELECTEDVALUE ( Activity[DatasetId] ) VAR _Count = COUNTROWS ( FILTER ( ALLSELECTED ( 'Activity' ), 'Activity'[DatasetId] = _currentID ) ) RETURN IF ( _Count >= _Slicer, _Count, BLANK () )The result is as follow:
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.