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
qwaiti27231
Helper III
Helper III

week on week

i need the dax formula for week on week

 

for eg 

 

count of order Id with 10/9/2017- count of order with 3/9/2017)/count Of order in 3/9/2017

For eg

 count of order at 3/9/2017= 32 count of order in 10/9/2017 =52

 

((52-32)/32)*100=62.50%

 

 

1 ACCEPTED SOLUTION

@qwaiti27231

 

You can create a measure like below:

 

7 days ago value = CALCULATE(SUM(Table5[Value]),FILTER(ALL(Table5),Table5[Date]=MAX(Table5[Date])-7))

55.PNG

 

66.PNG

 

Regards,

View solution in original post

8 REPLIES 8
v-sihou-msft
Employee
Employee

@qwaiti27231

 

In this scenario, you must have a Year column and a Week Number column in your table. To compare the current week and previous week. You can create a measure like below:

 

 

=
VAR CurrentWeekCountID =
    CALCULATE (
        COUNTA ( Table[ID] ),
        ALLEXCEPT ( Table, Table[Year], Table[WeekNumber] )
    )
VAR PreviousWeekCountID =
    CALCULATE (
        COUNTA ( Table[ID] ),
        FILTER (
            ALL ( Table ),
            Table[Year] = MAX ( Table[Year] )
                && Table[WeekNumber]
                    = MAX ( Table[WeekNumber] ) - 1
        ),
        ALLEXCEPT ( Table, Table[Year], Table[WeekNumber] )
    )
RETURN
    ( CurrentWeekCountID - PreviousWeekCountID )
        / PreviousWeekCountID

If you still have any question, please share some sample data.

 

Regards,

 

should i make week based on year or day???

@v-sihou-msft it doesnt work

@qwaiti27231

 

Can you share some sample data?

@qwaiti27231

 

You can create a measure like below:

 

7 days ago value = CALCULATE(SUM(Table5[Value]),FILTER(ALL(Table5),Table5[Date]=MAX(Table5[Date])-7))

55.PNG

 

66.PNG

 

Regards,

@v-sihou-msft is there any way i can contact  you...Requesting  ur help in many other queries....just joined as BI developer..would appreciate ur help

qwaiti27231
Helper III
Helper III

please mention count of order ID in dax formula

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.