Forum Discussion
scope increase and decrease
- Anonymous4 years ago
Hi Anonymous ,
Please new a measure:
Measure = VAR _sprint_start = MAX('Table'[sprint start]) VAR _date_changed = MAX('Table'[datechange]) VAR _days = _date_changed - _sprint_start VAR _filter = IF(_days>1,1) RETURN _filterYou can use it as a filter for table visuals or use it to get the number of conditions met.
Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Hi,
Please show the exact result that you are expecting.
it should just show the row with workitems with id- 20212 as it is added on the second the day of the sprint start
- Anonymous4 years agoNot applicable
Hi Anonymous ,
Please new a measure:
Measure = VAR _sprint_start = MAX('Table'[sprint start]) VAR _date_changed = MAX('Table'[datechange]) VAR _days = _date_changed - _sprint_start VAR _filter = IF(_days>1,1) RETURN _filterYou can use it as a filter for table visuals or use it to get the number of conditions met.
Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
- Ashish_Mathur4 years ago
Super User