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
GastroStuermer
Regular Visitor

Compare data of one week with the data of the week before, while the date is chosen via slicer

Hi,

 

I've got some Google Searchconsole Data and I want to create a tile that compares the Average Position on a certain date, which is chosen by a slicer, with the Average Position one week earlier. The following just gives me a "(Blank)":

 

AveragePositionOneWeekEarlier = CALCULATE ( [AveragePosition] ; FILTER ( ALL (GSC[Date]) ; WEEKNUM( GSC[Date] ; 21) = [WeekSelected] - 1))

 

I tried inserting an "ALL" after "WEEKNUM":

 

AveragePositionOneWeekEarlier = CALCULATE ( [AveragePosition] ; FILTER ( ALL (GSC[Date]) ; WEEKNUM( ALL (GSC[Date]) ; 21) = [WeekSelected] - 1))

 

but then I just get an error about multiple Values while only one is expected.

 

The Measures used are the following: 

 

Average Position = AVERAGE('GSC'[Position])

WeekSelected = MAX('OtherTable'[Weeknumber])

 

Can someone help me with that?

 

1 ACCEPTED SOLUTION
v-sihou-msft
Employee
Employee

@GastroStuermer

 

Since you have date column in your table, you can add WeekNum column and Year column for your calculation.

 

WeekNumber = WEEKNUM('Table'[Date],21)
Year = YEAR('Table'[Date])

Then you can just create two measures to calculate Current Week AVG and Previous Week AVG.

 

 

Current Week AVG = CALCULATE(AVERAGE('Table'[Amount]),FILTER(ALL('Table'),'Table'[WeekNumber]=MAX('Table'[WeekNumber]) && 'Table'[Year]=MAX('Table'[Year]))) 
Previous Week AVG = CALCULATE(AVERAGE('Table'[Amount]),FILTER(ALL('Table'),'Table'[WeekNumber]=MAX('Table'[WeekNumber])-1 && 'Table'[Year]=MAX('Table'[Year]))) 

4.PNG

 

 

Regards,

View solution in original post

2 REPLIES 2
v-sihou-msft
Employee
Employee

@GastroStuermer

 

Since you have date column in your table, you can add WeekNum column and Year column for your calculation.

 

WeekNumber = WEEKNUM('Table'[Date],21)
Year = YEAR('Table'[Date])

Then you can just create two measures to calculate Current Week AVG and Previous Week AVG.

 

 

Current Week AVG = CALCULATE(AVERAGE('Table'[Amount]),FILTER(ALL('Table'),'Table'[WeekNumber]=MAX('Table'[WeekNumber]) && 'Table'[Year]=MAX('Table'[Year]))) 
Previous Week AVG = CALCULATE(AVERAGE('Table'[Amount]),FILTER(ALL('Table'),'Table'[WeekNumber]=MAX('Table'[WeekNumber])-1 && 'Table'[Year]=MAX('Table'[Year]))) 

4.PNG

 

 

Regards,

HI @v-sihou-msft

 

 

That worked instantly! Thank you! This solution is so elegant and easy 🙂

 

Regards GastroStuermer

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.