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
Anonymous
Not applicable

previous week ,current week and growth % and latest date

Hi All,

 

i have a requirement :

previous week sales and current week sales and growth %  along with latest date .please find below attached data and expected results

 

previous week.PNG

1 ACCEPTED SOLUTION
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,

For your requirement, you could calculate the current week and previous week with the measure below.

current week_ =
VAR a =
    CALCULATE (
        MAX ( Table2[Column] ),
        FILTER (
            'Table2',
            YEAR ( 'Table2'[Date of last upload] )
                = YEAR ( MAX ( 'Table2'[Date of last upload] ) )
        )
    )
RETURN
    CALCULATE ( SUM ( Table2[sales] ), FILTER ( 'Table2', 'Table2'[Column] = a ) )
previous week = 
VAR a =
    CALCULATE (
        MAX ( Table2[Column] ),
        FILTER (
            'Table2',
            YEAR ( 'Table2'[Date of last upload] )
                = YEAR ( MAX ( 'Table2'[Date of last upload] ) )
        )
    )
RETURN
   CALCULATE (
       SUM ( Table2[sales] ),
        FILTER ( 'Table2', 'Table2'[Column] = a-1 )
    
)

Before creating the measures above, you need to create a calculated column for week.

Column = WEEKNUM('Table2'[Date of last upload])

Then you could calculate your growth, but I have a little confused about the logic of your growth.

Best  Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,

Have you solved your problem?

If you have solved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.

If you still need help, please feel free to ask.

Best  Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,

For your requirement, you could calculate the current week and previous week with the measure below.

current week_ =
VAR a =
    CALCULATE (
        MAX ( Table2[Column] ),
        FILTER (
            'Table2',
            YEAR ( 'Table2'[Date of last upload] )
                = YEAR ( MAX ( 'Table2'[Date of last upload] ) )
        )
    )
RETURN
    CALCULATE ( SUM ( Table2[sales] ), FILTER ( 'Table2', 'Table2'[Column] = a ) )
previous week = 
VAR a =
    CALCULATE (
        MAX ( Table2[Column] ),
        FILTER (
            'Table2',
            YEAR ( 'Table2'[Date of last upload] )
                = YEAR ( MAX ( 'Table2'[Date of last upload] ) )
        )
    )
RETURN
   CALCULATE (
       SUM ( Table2[sales] ),
        FILTER ( 'Table2', 'Table2'[Column] = a-1 )
    
)

Before creating the measures above, you need to create a calculated column for week.

Column = WEEKNUM('Table2'[Date of last upload])

Then you could calculate your growth, but I have a little confused about the logic of your growth.

Best  Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.