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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. 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
Anonymous
Not applicable

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
Anonymous
Not applicable

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
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.