Forum Discussion
Column(Y/N) last 12 weeks
Hello ,
I am trying to create a column which is going to calculate is the date in last 12 weeks or not.
I am using this formula:
- Anonymous3 years ago
Hi EmilijaN ,
Please try:
Last_12_weeks = IF ( DATEDIFF ( 'CALENDAR'[Date], TODAY (), WEEK ) >= 0 && DATEDIFF ( 'CALENDAR'[Date], TODAY (), WEEK ) <= 12, "Y", "N" )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 in the Power BI Forum
2 Replies
- vicky_
Super User
Try something like: DATEDIFF(TODAY(), Calendar[Day], WEEK) <= 12 as the if condition.
Docs here: https://learn.microsoft.com/en-us/dax/datediff-function-dax
- AnonymousNot applicable
Hi EmilijaN ,
Please try:
Last_12_weeks = IF ( DATEDIFF ( 'CALENDAR'[Date], TODAY (), WEEK ) >= 0 && DATEDIFF ( 'CALENDAR'[Date], TODAY (), WEEK ) <= 12, "Y", "N" )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 in the Power BI Forum