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
sguenther
Advocate II
Advocate II

Sum over current week

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

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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 ()
    )

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

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 🙂

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.