Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
giorajo
Helper I
Helper I

Always Displaying Same Value

I got a matrix displaying the name of clients in the rows and the sales per month on the column. 

 

Screen Shot 2020-08-27 at 3.25.54 AM.png

 

I got a Year slicer for this matrix. I have a measure that gets the December sales of the previous year.

 

What I intend to do is add another column to display the sales for the month divided by the said December sales for the previous year. My problem is that the December sales is cannot be used monthly columns.

 

I hope my question makes sense. Thank you in advance.

 

1 ACCEPTED SOLUTION
dedelman_clng
Community Champion
Community Champion

Hi @giorajo 

 

Try this code

 

Total Sales = CALCULATE(SUM(Sales[Sales]))

Sales Rel to Prev Dec =
VAR __PrevYear =
    YEAR ( MAX ( DateTab[Date] ) ) - 1
VAR __PrevDec =
    CALCULATE (
        [Total Sales],
        DATESBETWEEN (
            DateTab[Date],
            DATE ( __PrevYear, 12, 1 ),
            DATE ( __PrevYear, 12, 31 )
        )
    )
RETURN
    CALCULATE ( DIVIDE ( [Total Sales], __PrevDec ), 0 )

 

2019 (vs Dec 2018)

2020-08-26 15_12_42-scratch3 - Power BI Desktop.png

 

2020 (vs Dec 2019)

2020-08-26 15_12_53-scratch3 - Power BI Desktop.png

 

Hope this helps

David

View solution in original post

4 REPLIES 4
Ashish_Mathur
Super User
Super User

Hi,

Share the link from where i can download your PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

Hi @giorajo 

you have to create a measure for each month and user it in the table chart

Jan_Dec = [Jan]/[Calc_December]

Feb_Dec = [Feb]/[Calc_December]

...

Jan_Dec = [Dec]/[Calc_December]

dedelman_clng
Community Champion
Community Champion

Hi @giorajo 

 

Try this code

 

Total Sales = CALCULATE(SUM(Sales[Sales]))

Sales Rel to Prev Dec =
VAR __PrevYear =
    YEAR ( MAX ( DateTab[Date] ) ) - 1
VAR __PrevDec =
    CALCULATE (
        [Total Sales],
        DATESBETWEEN (
            DateTab[Date],
            DATE ( __PrevYear, 12, 1 ),
            DATE ( __PrevYear, 12, 31 )
        )
    )
RETURN
    CALCULATE ( DIVIDE ( [Total Sales], __PrevDec ), 0 )

 

2019 (vs Dec 2018)

2020-08-26 15_12_42-scratch3 - Power BI Desktop.png

 

2020 (vs Dec 2019)

2020-08-26 15_12_53-scratch3 - Power BI Desktop.png

 

Hope this helps

David

Thank you very much, @dedelman_clng !

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors