Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
20 | |
18 | |
18 | |
15 |
User | Count |
---|---|
38 | |
20 | |
19 | |
16 | |
10 |