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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
marami21
Frequent Visitor

SUMX and GROUPBY

Hello
I have a table that groups the sales amount by date and category. That way I can use the date and category to filter the sales amount
I want to save space deleting that table and use only one dax to get the final sales amount. Something like SUMX(GROUPBY(...)). The problem is that I can't use filters when I use that dax
Is there a way to create that dax and use filters?

Thank you,

1 ACCEPTED SOLUTION
v-alq-msft
Community Support
Community Support

Hi, @marami21 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

Table:

b3.png

 

You may try to create a measure like below.

Result = 
SUMX(
    SUMMARIZE(
        'Table',
        'Table'[Category],
        'Table'[Date],
        "Sales",
        SUM('Table'[Sales])
    ),
    [Sales]
)

 

Result:

b1.png

 

b2.png

 

 

Best Regards

Allan

 

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-alq-msft
Community Support
Community Support

Hi, @marami21 

 

Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.

Table:

b3.png

 

You may try to create a measure like below.

Result = 
SUMX(
    SUMMARIZE(
        'Table',
        'Table'[Category],
        'Table'[Date],
        "Sales",
        SUM('Table'[Sales])
    ),
    [Sales]
)

 

Result:

b1.png

 

b2.png

 

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Pragati11
Super User
Super User

Hi @marami21 ,

 

Can you please share some sample data and what you are trying to achieve?

 

Thanks,

Pragati

Best Regards,

Pragati Jain


MVP logo


LinkedIn | Twitter | Blog YouTube 

Did I answer your question? Mark my post as a solution! This will help others on the forum!

Appreciate your Kudos!!

Proud to be a Super User!!

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

Check out the June 2024 Power BI update to learn about new features.

PBI_Carousel_NL_June

Fabric Community Update - June 2024

Get the latest Fabric updates from Build 2024, key Skills Challenge voucher deadlines, top blogs, forum posts, and product ideas.

Top Solution Authors