Forum Discussion
mkeisha
Helper I
7 years agoSlicer-based date range used as parameters for calculated column
My calendar table starts on 9/1/2017 and ends on 4/30/2019. I am simply trying create a calculated column that indicates if the date is either in the BASE period or in the TEST period. The BASE per...
ElenaN
Resolver V
7 years agoHello,
You can try this:
=if(('Calendar'[Date] >= DATEVALUE("9/1/2017") && 'Calendar'[Date] <= DATEVALUE("6/30/2018")), "Base Period", "Test Period")Regards,
ElenaN