Forum Discussion
android1
Post Patron
8 years agoFilter between hours in the day
Hi, This calc column 8AM-10PM = IF(HOUR(vw_PivotChargesFrontPage[Visits_StartTime]) >= 8 && HOUR(vw_PivotChargesFrontPage[Visits_EndTime]) <= 22 ,TRUE(),FALSE()) returns all calls with a sta...
- 8 years ago
Would need sample data posted that I can copy and paste, just been hacking up to this point.
- 8 years ago
Add the following Boolean expression as well.
vw_PivotChargesFrontPage[Visits_StartTime] <= vw_PivotChargesFrontPage[Visits_EndTime]
Greg_Deckler
Community Champion
8 years ago8AM-10PM =
IF(
HOUR(vw_PivotChargesFrontPage[Visits_StartTime]) >= 8
&&
(
HOUR(vw_PivotChargesFrontPage[Visits_EndTime]) <= 21
||
(
HOUR(vw_PivotChargesFrontPage[Visits_EndTime]) = 22
&&
MINUTE(vw_PivotChargesFrontPage[Visits_EndTime]) = 0)
)
),
TRUE(),
FALSE()
)Maybe.
android1
Post Patron
8 years agoOops, inadvertantly accepted as solution.
Not quite returning what I need.
- Greg_Deckler8 years ago
Community Champion
Would need sample data posted that I can copy and paste, just been hacking up to this point.
- android18 years ago
Post Patron
- v-chuncz-msft8 years ago
Community Support
Add the following Boolean expression as well.
vw_PivotChargesFrontPage[Visits_StartTime] <= vw_PivotChargesFrontPage[Visits_EndTime]- android18 years ago
Post Patron
Yes, thank you. Greg_Deckler Your code works perfectly with the added expression from v-chuncz-msft
- Greg_Deckler8 years ago
Community Champion
Cool! The power of teamwork!