Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
The goal is to show week number in the visualization next to the weekly Total Returning trend. However, when 'Date' is removed from the visual the Total Returning aggregation changes. See screenshots below. What am I missing?
Solved! Go to Solution.
The problem is the measure. It evaluates if the min of the week is Sunday. At the day level that returns just Sundays in the visual. When just the Week is present, it is still true but it then uses all the days of that week in the calculation. Please use this expression which gets same results whether Date is there or not.
Total Returning W =
VAR thismin =
MIN ( 'Dates Adj'[Date] )
RETURN
IF (
WEEKDAY ( MIN ( 'Dates Adj'[Date] ) ) = 1,
CALCULATE ( SUM ( [COMMITMENTS] ), 'Dates Adj'[Date] = thismin )
)
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
The problem is the measure. It evaluates if the min of the week is Sunday. At the day level that returns just Sundays in the visual. When just the Week is present, it is still true but it then uses all the days of that week in the calculation. Please use this expression which gets same results whether Date is there or not.
Total Returning W =
VAR thismin =
MIN ( 'Dates Adj'[Date] )
RETURN
IF (
WEEKDAY ( MIN ( 'Dates Adj'[Date] ) ) = 1,
CALCULATE ( SUM ( [COMMITMENTS] ), 'Dates Adj'[Date] = thismin )
)
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Thanks @mahoneypat! Can you help me understand what this calculation does? I applied to the sample dataset and it worked. On the real dataset is not working yet, the only difference I am aware is that the real dataset has other dimensions such as AcademicYear and GradeLevel. I do not why see that would be an issue, and as of now cannot identify any other difference. Can you think of anything for me to check? Thanks again.
The measure first takes the min date value in the context. When the Date column is in the visual, that is the result. When it is just week, since the default min value of any week is Sunday (Weekday =1), it still works. The change is that it now uses that min value to filter the date table before calculating the result. Any other columns in the visual that affect the Date table would also affect the result.
When you say it is not working, what do you mean? Is it blank? Wrong numbers? Either way, provide more details on the other columns in the visual. You can try removing them one by one to figure out which one is throwing it off.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
@diogobraga2 , It may be because you have data across years and it is summing up that.
Have week year and try
refer
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...
Hi @amitchandak! Adding years did not change the result. Any other suggestion? Thank you.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
107 | |
68 | |
48 | |
44 | |
44 |