Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
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
User | Count |
---|---|
19 | |
18 | |
16 | |
13 | |
13 |
User | Count |
---|---|
9 | |
8 | |
8 | |
7 | |
6 |