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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
Sander1401
Helper II
Helper II

Last Sunday in dataset

Hi all,

is there a way to calculate (DAX) the last Sunday of the dataset?

for example if the max date in the dataset is Monday 15-04-2024, I would like the date 14-04-2024. If the max date is 14-04-2024, then I would also like 14-04-2024.

 

Sander

1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

you need to create a column in the calendar tableScreenshot_1.png

View solution in original post

4 REPLIES 4
ThxAlot
Super User
Super User

Simple enough,

ThxAlot_0-1713210342962.png

But bear in mind, this measure is single-purposed and used only by itself.



Expertise = List.Accumulate(


        {Days as from Today},


        {Skills and Knowledge},


        (Current, Everyday) => Current & Day.LeanAndPractise(Everyday)


)



Ahmedx
Super User
Super User

you need to create a column in the calendar tableScreenshot_1.png

ahoggatt42
Regular Visitor

Have you tried a measure:

 

Test = CALCULATE(LASTDATE(*Date*),WEEKDAY(*Date*,1)=1)

I will definitely try this one, thanks. 
my own solution (not tested yet) is:


If (weekday(Max date, 2) = 7, max date, max date - weekday(Max date, 2))

 

but yours looks more clear.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors
Top Kudoed Authors