March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi everybody,
I want to create a simple measure but just can't figure out how to write it properly. Here we go:
Let#s say I have a table with two columns:
Date | Logged in
1.1.2018 | 2
2.1.2018 | 5
3.1.2018 | 6
...
So basically a list with people who have been logged into my app on which days.
Now I want to create a line chart that shows me the sum of all logins always for the current week. But only for the current week, not counting in any logins from before the start of the week.
y axis: # Logins
x axis: Mon, Tue, Wed, Thu, Fri, Sat, Sun (from a separate date table)
That means the line chart is always going up.
The problem which I can't overcome is, that I don't know how to retrieve the start of the week date for every day of the week. I tried something like this, but it doesn't work:
# Logins for current week = CALCULATE( COUNTROWS('Logins'), FILTER('Logins', 'Calendar'[Date] <= MAX('Calendar'[Date]) && 'Calendar'[Date] >= MIN(ALL('Calendar'[Date])) ) ) + 0
Solved! Go to Solution.
To replicate your problem I have created a table with a date field and a loggedin field that is populated with numbers.
The following measures will give you the sum of the logged in values only for the week of the date set in the _Today Variable. If you want this to be the current date then set the variable to be equal to UTCTODAY()
Current Week = VAR _Today = DATE ( 2018, 1, 8 ) VAR _StartOfWeek = _Today - WEEKDAY ( _Today, 2 ) + 1 VAR _EndOfWeek = _Today + ( 7 - WEEKDAY ( _Today, 2 ) ) RETURN IF ( MAX ( Table1[date] ) >= _StartOfWeek && MAX ( Table1[date] ) <= _EndOfWeek, SUM ( Table1[loggedin] ), BLANK () )
To replicate your problem I have created a table with a date field and a loggedin field that is populated with numbers.
The following measures will give you the sum of the logged in values only for the week of the date set in the _Today Variable. If you want this to be the current date then set the variable to be equal to UTCTODAY()
Current Week = VAR _Today = DATE ( 2018, 1, 8 ) VAR _StartOfWeek = _Today - WEEKDAY ( _Today, 2 ) + 1 VAR _EndOfWeek = _Today + ( 7 - WEEKDAY ( _Today, 2 ) ) RETURN IF ( MAX ( Table1[date] ) >= _StartOfWeek && MAX ( Table1[date] ) <= _EndOfWeek, SUM ( Table1[loggedin] ), BLANK () )
@Anonymous great, thank you! I learned something new 🙂
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
84 | |
66 | |
54 | |
43 |
User | Count |
---|---|
203 | |
106 | |
98 | |
65 | |
56 |