cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
lucasattom
New Member

Return the amount for max date for each item and sum for group

Hello,

 

I'm having some trouble getting the following table to work.

 

I have the following database (it's simplified, I actually have information in different connected tables 😞

 

lucasattom_2-1683904617387.png

 

I want a matrix table summarized by the amount of each product for the max date (and within that date, I want the row with the max "Id"). The highlighted rows are the desired ones for the output.

 

The resulting matrix should look like this:

 

lucasattom_1-1683904385018.png

 

So I'd have a measure that returns the most recent amount (highest "date", then highest "Id") for each product, and summarize the group with the sum for each item. I tried using SUMMARIZE with no success.

 

Thanks in advance!

 

 

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

Hi @lucasattom ,

 

I think you can try this code to create a measure.

Output =
VAR _AddColumn =
    ADDCOLUMNS (
        FILTER ( 'Table', 'Table'[Date] = MAX ( 'Table'[Date] ) ),
        "MAXID",
            CALCULATE (
                MAX ( 'Table'[Id] ),
                FILTER (
                    ALLEXCEPT ( 'Table', 'Table'[Category], 'Table'[Product] ),
                    'Table'[Date] = MAX ( 'Table'[Date] )
                )
            )
    )
VAR _Filter =
    FILTER ( _AddColumn, [Id] = [MAXID] )
RETURN
    SUMX ( _Filter, [Amount] )

Result is as below.

vrzhoumsft_0-1684135618424.png

 

Best Regards,
Rico Zhou

 

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

1 REPLY 1
v-rzhou-msft
Community Support
Community Support

Hi @lucasattom ,

 

I think you can try this code to create a measure.

Output =
VAR _AddColumn =
    ADDCOLUMNS (
        FILTER ( 'Table', 'Table'[Date] = MAX ( 'Table'[Date] ) ),
        "MAXID",
            CALCULATE (
                MAX ( 'Table'[Id] ),
                FILTER (
                    ALLEXCEPT ( 'Table', 'Table'[Category], 'Table'[Product] ),
                    'Table'[Date] = MAX ( 'Table'[Date] )
                )
            )
    )
VAR _Filter =
    FILTER ( _AddColumn, [Id] = [MAXID] )
RETURN
    SUMX ( _Filter, [Amount] )

Result is as below.

vrzhoumsft_0-1684135618424.png

 

Best Regards,
Rico Zhou

 

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

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors