Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
76 | |
73 | |
42 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |