Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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:
Solved! Go to Solution.
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
Problem solved with VAR