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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
CJ0323
Helper I
Helper I

How to take the STD Deviation of 2 locations combined.

In my dataset I have a table that looks like this.

LocationSale#Shirts
A1$100
A2$225
A3$50
B1$125
B2$215
B3$75


 I want to take the STD deviation of several locations combined but I need a measure that will summarize the sale# for each instanc. For instance for Sale# 1 should be Location A+B ($100+125) then Sale# 2 should be (225+215) so on for how many ever sale# we have. Then after this combination/summarization we need to take the STDDEV. So it would look like this STDDEV( (225,440,125). How can I do this using measures? Keep in mind I will have a filter that will allow of 1 or multiple locations to be selected.

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

Hi @CJ0323 ,

 

I made simple samples and you can check the results below:

vtianyichmsft_0-1718173568953.png

vtianyichmsft_1-1718173582330.png

Summarized Sales = SUMX(
    SUMMARIZE(
        'Table',
        'Table'[Sale#],
        "TotalSales", SUM('Table'[Shirts])
    ),
    [TotalSales]
)

STDDEV of Combined Sales = STDEVX.P(
    SUMMARIZE(
        'Table',
        'Table'[Sale#],
        "SummarizedSales", [Summarized Sales]
    ),
    [SummarizedSales]
)

 

An attachment for your reference. Hope it helps!

 

Best regards,
Community Support Team_ Scott Chang

 

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

Hi @CJ0323 ,

 

I made simple samples and you can check the results below:

vtianyichmsft_0-1718173568953.png

vtianyichmsft_1-1718173582330.png

Summarized Sales = SUMX(
    SUMMARIZE(
        'Table',
        'Table'[Sale#],
        "TotalSales", SUM('Table'[Shirts])
    ),
    [TotalSales]
)

STDDEV of Combined Sales = STDEVX.P(
    SUMMARIZE(
        'Table',
        'Table'[Sale#],
        "SummarizedSales", [Summarized Sales]
    ),
    [SummarizedSales]
)

 

An attachment for your reference. Hope it helps!

 

Best regards,
Community Support Team_ Scott Chang

 

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

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors