The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
How can i stop my dax from counting last years week number and only look at 2022 please
Last Week Offers =
VAR _LastWeekOffers =
CALCULATE(
COUNTA(Offers[Offer_Initiative.Initiative_Title]),
Dates[Week Num]= WEEKNUM(TODAY(),1)-1)
RETURN
IF(ISBLANK(_LastWeekOffers),0,_LastWeekOffers)
Solved! Go to Solution.
@cooksteve09 , Try like
Last Week Offers =
VAR _LastWeekOffers =
CALCULATE(
COUNTA(Offers[Offer_Initiative.Initiative_Title]), filter(Dates,
Dates[Week Num]= WEEKNUM(TODAY(),1)-1 && year(Dates[Date]) = year(Today())))
RETURN
IF(ISBLANK(_LastWeekOffers),0,_LastWeekOffers)
also, refer the rank way
Power BI — Week on Week and WTD
https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-La...
https://www.youtube.com/watch?v=pnAesWxYgJ8
@cooksteve09 , Try like
Last Week Offers =
VAR _LastWeekOffers =
CALCULATE(
COUNTA(Offers[Offer_Initiative.Initiative_Title]), filter(Dates,
Dates[Week Num]= WEEKNUM(TODAY(),1)-1 && year(Dates[Date]) = year(Today())))
RETURN
IF(ISBLANK(_LastWeekOffers),0,_LastWeekOffers)
also, refer the rank way
Power BI — Week on Week and WTD
https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3
https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-La...
https://www.youtube.com/watch?v=pnAesWxYgJ8
Thank you very much, just couldnt get it myself!
Appreciate that
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
11 | |
10 | |
10 | |
9 |