Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
harsha449
Frequent Visitor

Data for last day of the week is not displaying until I select slicer

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")

             )

 

harsha449_6-1646157805654.png

 

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")

             )

 

harsha449_7-1646157854200.png

 

I’m seeing data when the slicer is selected. Any help will be greatly appreciated.

 

Thanks,

Sri

1 ACCEPTED 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

View solution in original post

5 REPLIES 5
harsha449
Frequent Visitor

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.

vojtechsima
Super User
Super User

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.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.