Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
HI,
DAX is working fine, but i see data only for last monday. if i select slicer for other weekdays then only i can see the data.
I'm trying to see data form last day of the week. please help
Last Monday data is visible. I have used same dax for other days, but i can not see from Tuesday to Sunday.
Last Monday =
CALCULATE(
sum(Company[Visits]),
LASTDATE(Company[Date]),
KEEPFILTERS('Company'[Day of Week Name] = "Monday")
)
However, When I select Tuesday in the slicer, I can see “Last Tuesday” data in the tables
Last Tuesday =
CALCULATE(
sum(Company[Visits]),
LASTDATE(Company[Date]),
KEEPFILTERS('Company'[Day of Week Name] = "Tuesday")
)
I’m seeing data when the slicer is selected. Any help will be greatly appreciated.
Thanks,
Sri
Solved! Go to Solution.
Hi, @harsha449 ,
Thank you very much for your sample data, it was really helpful:
Please change your Last "Day" measures accordingly:
Last Friday =
var lastFriday = MAXX(FILTER(Sheet1, Sheet1[Day of Week Name] = "Friday"),Sheet1[Date])
var __calculation = CALCULATE(SUM(Sheet1[Visits]),Sheet1[Date]=lastFriday)
return __calculation
Shared files through google drive. Any help will be greatly appreciated.
https://drive.google.com/drive/folders/1GY2-3uoNOFP2KX5npS48s2qTle1otU-z?usp=sharing
Hi, @harsha449 ,
Thank you very much for your sample data, it was really helpful:
Please change your Last "Day" measures accordingly:
Last Friday =
var lastFriday = MAXX(FILTER(Sheet1, Sheet1[Day of Week Name] = "Friday"),Sheet1[Date])
var __calculation = CALCULATE(SUM(Sheet1[Visits]),Sheet1[Date]=lastFriday)
return __calculation
Thanks, It is working.
Thanks for the quick response, i will test and update you.
Hi,
@harsha449
I believe you can try adding ALL in the filter argument to ignore every filter that could be applied.
However, if you want me to have a closer look, please share sample data (in copyable form) and I can try to find a tailor-made solution.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 63 | |
| 55 | |
| 42 | |
| 41 | |
| 23 |
| User | Count |
|---|---|
| 167 | |
| 136 | |
| 120 | |
| 79 | |
| 54 |