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
joeyrobbins
Frequent Visitor

Sharing a montly value between all rows in your filtered table

Hi!

 

Going a little crazy trying to figure this out - I have a table of values split by month and by sales channel called 'Overheads' (see below).

joeyrobbins_0-1661334667369.png

What I want to do is to pull these figures into a field on my main orders database, which has line-by-line orders - matching the order date and the sales channel - but also split between the total number of orders in that channel for that month.

 

joeyrobbins_1-1661340235870.png

As you can see above, I've managed to pull through the value on each line corresponding to the month of order and the channel, (using 'RELATED' - adding a month/channel concatenation to my data query) -  but what I want to do is to divide this value by the total number of orders in that month for that channel - so that when it is summed together in a summary matrix - it produces the total 'direct cost' for the month, but will also change proportionally day by day if your date filter is not over the whole month. Any help would be appreciated!

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

Hi @joeyrobbins ,

 

Please try these measures.

 

TotalCosts = 
CALCULATE (
    SUM ( Overheads[Value] ),
    FILTER (
        Overheads,
        Overheads[Costs] = MAX ( 'Table'[Channel Name] )
            && Overheads[Month] = MAX ( 'Table'[Order YearMonth] )
    )
)
M_costs =
IF (
    ISFILTERED ( 'Table'[Order No.] ),
    DIVIDE (
        [TotalCosts],
        CALCULATE (
            COUNTROWS ( 'Table' ),
            ALLSELECTED ( 'Table' ),
            VALUES ( 'Table'[Channel Name] ),
            VALUES ( 'Table'[Order YearMonth] )
        )
    ),
    [TotalCosts]
)

vkkfmsft_0-1661743476827.png


If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
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-kkf-msft
Community Support
Community Support

Hi @joeyrobbins ,

 

Please try these measures.

 

TotalCosts = 
CALCULATE (
    SUM ( Overheads[Value] ),
    FILTER (
        Overheads,
        Overheads[Costs] = MAX ( 'Table'[Channel Name] )
            && Overheads[Month] = MAX ( 'Table'[Order YearMonth] )
    )
)
M_costs =
IF (
    ISFILTERED ( 'Table'[Order No.] ),
    DIVIDE (
        [TotalCosts],
        CALCULATE (
            COUNTROWS ( 'Table' ),
            ALLSELECTED ( 'Table' ),
            VALUES ( 'Table'[Channel Name] ),
            VALUES ( 'Table'[Order YearMonth] )
        )
    ),
    [TotalCosts]
)

vkkfmsft_0-1661743476827.png


If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-kkf-msft That's amazing! There's a couple of functions I haven't used before in those measures, i.e. ALLSELECTED and ISFILTERED which I'll get my head around.

This is much further than I'd managed - the only thing is that when filtered over 2 months on a summary table - only the most recent month value appears. Do you know how I can modify these date measures to combine the values when two months are in the filter?

Many thanks again, 

Joey

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.