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

CALCULATE() with measure as a date filter

Hi all,

 

I'm using a measure to find the last date of a row in table (table1) already filtered by a date segment. Looks like this:

 

Last _date =
CALCULATE(LASTDATE(Table1[date]);    #find the last date available in table1
DATESINPERIOD('CALENDAR'[Date];LASTDATE('CALENDAR'[Date]);-7;DAY))  #define the range of dates 
 
Until here I know it's working properly because when I visualize the data I have the last date for all my items.
 
Item1 | Last_date_1
Item2 | Last_date_2
Item2 | Last_date_2
....
 
Now I want to add a an other measure to this visual. This is were I'm lost.
 
I would like to use my last_date measure as a date filter in a new CALCULATE() function.
 
Something like this but it's not working saying that a CALCULATE function has been used in a filter..
 
Volume_measure=CALCULATE(SUM(Table1[Volume]);Table1[date]=[Last_date])
 
Any idea, trick?
 
Thank you
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Problem solved with VAR

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

As requested by few people, the code should look like this

 

New_measure = 

VAR

variable=[last_date] #last_date is a measure

RETURN

CALCULATE(AVERAGE(Table1[volume];Table1[date]=variable)

 

last_date= 

CALCULATE(LASTDATE(Table1[date]);    #find the last date available in table1
DATESINPERIOD('CALENDAR'[Date];LASTDATE('CALENDAR'[Date]);-7;DAY))  #define the range of dates 

 

@SingSong 

 

Anonymous
Not applicable

Problem solved with VAR

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.

Top Solution Authors