Forum Discussion
mesuyog
4 years agoRegular Visitor
Custom date filter
I have to create custom date filter where Month start should be last months 13 and month end should be that months 12. For Example - Normally : January 2022 Starts - 1st ends at 31st I need : ...
- Anonymous4 years ago
Hi mesuyog ,
What's your expected output? If you want to simply apply a date filter, you may drag Date column to Slicer field, then you could custom date period:
Or if you want to re-arrange the date month, for example,
2021 December is from 2021/12/13 to 2022/1/12
2022 January is from 2022/1/13 to 2022/2/12
Please create a column:
New YearMonth = var _date=IF(DAY([Date])>=13,[Date],EOMONTH('Table'[Date],-1)) return FORMAT(_date,"yyyy mmmm")And I created another column for sort:
Output:
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Pbiuserr
4 years agoPost Prodigy
You didnt mention it, perhaps you can try pattern down below
Column = SWITCH( TRUE()
, Calendar[Date] >= DATE(2019,1,1) && Calendar[Date] <= DATE(2020,12,31), 1
, Calendar[Date] >= DATE(2021,1,1) && Calendar[Date] <= DATE(2021,12,31), 2
)
Just adjust dates for your requirements