Forum Discussion
Help with Date/Time Intelligence
- 1 year ago
Mikeincairns
Please try with this measure:
Logic: if the process ended before the "min date selected at the slicer" or the process started after the "max date selected at the slicer" then it returns N otherwise Y.Steps = VAR _MaxSelected = MAXX ( ALLSELECTED ( Calendar), Calendar[Date] ) VAR _MinSelected = MINX ( ALLSELECTED ( Calendar), Calendar[Date] ) RETURN IF ( tblExtract[Step 4] < _MinSelected || tblExtract[Step 1] > _MaxSelected, "N", "Y")I hope this helps, if so please accept as a solution. Kudos are welcome😁.
Mikeincairns
Please try with this measure:
Logic: if the process ended before the "min date selected at the slicer" or the process started after the "max date selected at the slicer" then it returns N otherwise Y.
Steps =
VAR _MaxSelected = MAXX ( ALLSELECTED ( Calendar), Calendar[Date] )
VAR _MinSelected = MINX ( ALLSELECTED ( Calendar), Calendar[Date] )
RETURN
IF ( tblExtract[Step 4] < _MinSelected || tblExtract[Step 1] > _MaxSelected,
"N", "Y")I hope this helps, if so please accept as a solution. Kudos are welcome😁.
- Mikeincairns1 year agoFrequent Visitor
Thanks for getting me in the right direction.
I am finding it super hard to describe what I want, so dont want to waste anyones time.
I will mark it as solved.
Appreciate your reply veru much, Thankyou.