Forum Discussion
EmilijaN
Helper I
3 years agoColumn(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: Last_12_weeks = if('CALENDAR'[Week Rank]>=max('CALENDAR'[We...
- 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
vicky_
Super User
3 years agoTry something like: DATEDIFF(TODAY(), Calendar[Day], WEEK) <= 12 as the if condition.
Docs here: https://learn.microsoft.com/en-us/dax/datediff-function-dax