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
srivally
Helper I
Helper I

get last month sales as Total sales

Hi All,

 

I have a scenario like, I want to display last month sales as Total sales for the year and Grand total should be sum of Total sales(last month sales) for all the years if I use matrix visualisation. But here if I use matrix visualisation, the total is getting sum of sales of all the months for that year. 

I can do it in tabular format by using rank function based on year and month and displaying only rank=1 as total which is not possible in matrix visualisation. 

I have attached the source and expected result in following path
https://www.dropbox.com/s/nqh42npw85qlo8d/data.xlsx?dl=0
https://www.dropbox.com/s/heoe1v7fbb7d3w6/Expected%20Result.png?dl=0

Please help me on this by suggesting with your ideas.

 

Regards,

Srivally

1 ACCEPTED SOLUTION
v-cherch-msft
Employee
Employee

Hi @srivally

 

You may create a measure as below:

Measure  =
VAR a =
    CALCULATE ( MAX ( data[Month] ) )
RETURN
    IF (
        HASONEVALUE ( data[Month] ) = FALSE ()
            && HASONEVALUE ( data[Year] ),
        CALCULATE ( SUM ( data[Customer Balance] ), FILTER ( data, data[Month] = a ) ),
        CALCULATE ( SUM ( data[Customer Balance] ) )
    )

Regards,

Cherie

Community Support Team _ Cherie Chen
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-cherch-msft
Employee
Employee

Hi @srivally

 

You may create a measure as below:

Measure  =
VAR a =
    CALCULATE ( MAX ( data[Month] ) )
RETURN
    IF (
        HASONEVALUE ( data[Month] ) = FALSE ()
            && HASONEVALUE ( data[Year] ),
        CALCULATE ( SUM ( data[Customer Balance] ), FILTER ( data, data[Month] = a ) ),
        CALCULATE ( SUM ( data[Customer Balance] ) )
    )

Regards,

Cherie

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

Hi @v-cherch-msft,

 

Thanks a lot for your reply, I got the exact solution what I need. Here i'm facing the other problem which is about Grand Total. Here the grand total is dispalying sum of all the sales, but I wanted to display only sum of subtotals. Also I do not have any option to hide the grand total. I have placed the exact requirement in the following path.

https://www.dropbox.com/s/avbe8mogmzxzwc5/Expected.png?dl=0
Could you please help me on this as well.

 

Regards,

Srivally

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.