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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Return single date

Hello,

 

Sorry I'm new to Power BI. But within a measure I'm looking for return just single date. But this date needs to be the newest day minus 3. For example:

 

last date on the dataset 20/03/2021 and I want it to return 17/03/2021.

 

This is what I've tried so far but it returns multiple dates:

PARALLELPERIOD('Calendar'[Date],-3,DAY)
 
Thanks in advance!
1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can use the ALL function to remove all filters and return a single date.

Measure = CALCULATE(MAX('Calendar'[Date])-3,ALL('Calendar'))

20.png

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-stephen-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can use the ALL function to remove all filters and return a single date.

Measure = CALCULATE(MAX('Calendar'[Date])-3,ALL('Calendar'))

20.png

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

HarishKM
Impactful Individual
Impactful Individual

@Anonymous Hey Bruh ,
You can take inspriration from my calculation .

latest date = CALCULATE(MAX(data[Order Date]),DATEADD(data[Order Date],-3,DAY))
HarishKM_0-1616513101302.png

 

amitchandak
Super User
Super User

@Anonymous , A measure or measure var

 

maxx(ALLSELECTED('Calendar'),'Calendar'[Date]) -3

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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