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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
bcassilhas
Frequent Visitor

Sum Values within a criteria

Hi Community!

 

I need a measure what sum the lowest price of every product (matching the ID), according to the schema below (our price and competidor price):

bcassilhas_3-1665425438964.png

When i dont select a competidor, it just sums all the rows following date and store filters:

bcassilhas_4-1665425630669.png

 

 

Can someone help me??  :((

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @bcassilhas ,

If I have misunderstood your meaning before, please provide your pbix file without privacy information and more details with your desired output.

 

How to Get Your Question Answered Quickly 

 

Best Regards

Community Support Team _ Polly

 

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

3 REPLIES 3
Anonymous
Not applicable

Hi @bcassilhas ,

Please refer to my steps to see if it helps you.

Create a new table includes category column , and without relationship between the 2 tables.

Then create 2 columns.

LOWCOMPETIDOR =
VAR _1 =
    MINX (
        FILTER (
            'Table',
            'Table'[date] = EARLIER ( 'Table'[date] )
                && 'Table'[CATEGORY] = EARLIER ( 'Table'[CATEGORY] )
        ),
        'Table'[PRICE COMPETIDOR]
    )
RETURN
    IF ( 'Table'[PRICE COMPETIDOR] = _1, _1, BLANK () )
lowourprice =
VAR _1 =
    MINX (
        FILTER (
            'Table',
            'Table'[date] = EARLIER ( 'Table'[date] )
                && 'Table'[CATEGORY] = EARLIER ( 'Table'[CATEGORY] )
        ),
        'Table'[OUR PREICE]
    )
RETURN
    IF ( 'Table'[OUR PREICE] = _1, _1, BLANK () )

Finally create 2 measures.

OURPRICEMEASUR =
VAR _selected =
    SELECTEDVALUE ( 'Table (2)'[category] )
VAR _sumlow =
    CALCULATE (
        SUM ( 'Table'[lowourprice] ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[CATEGORY] = SELECTEDVALUE ( 'Table (2)'[category] )
        )
    )
VAR _sumall =
    CALCULATE (
        SUM ( 'Table'[OUR PREICE] ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[CATEGORY] = SELECTEDVALUE ( 'Table (2)'[category] )
        )
    )
RETURN
    IF ( ISFILTERED ( 'Table (2)'[category] ), _sumall, _sumlow )

 

PRICECOMPETIDORMEASU =
VAR _selected =
    SELECTEDVALUE ( 'Table (2)'[category] )
VAR _sumlow =
    CALCULATE (
        SUM ( 'Table'[LOWCOMPETIDOR] ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[CATEGORY] = SELECTEDVALUE ( 'Table (2)'[category] )
        )
    )
VAR _sumall =
    CALCULATE (
        SUM ( 'Table'[PRICE COMPETIDOR] ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[CATEGORY] = SELECTEDVALUE ( 'Table (2)'[category] )
        )
    )
RETURN
    IF ( ISFILTERED ( 'Table (2)'[category] ), _sumall, _sumlow )

vpollymsft_0-1665457163704.pngvpollymsft_1-1665457174132.png

 

 

 

 

 

Best Regards

Community Support Team _ Polly

 

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

 

Polly, thank you for the answer!

 

Maybe i wasnt too much clear, but i think i couldnt get the output i wanted. The lowest price column needs to be matching by id. Below, theres a part of the dataset with the 2 new columns. The arrows refers to Product ID, Our Price and Competidor Price, respectively. The new calculated columns aren't returning any price value for this ID (256).

 

bcassilhas_1-1665507898063.png

I want to build a matrix like this (sum lowest prices of products of each category):

CategoryOur PriceCompetidor Price
Drinks$3500$3400
X$1200$1300
Y$2000$2200

 

I didn't understood too much the category slicer that you put to change the values. I have Date, Store and Competidor Slicers on my report, and the matrix above needs to filter according to these criterias.

Thank you! 🙂

Anonymous
Not applicable

Hi @bcassilhas ,

If I have misunderstood your meaning before, please provide your pbix file without privacy information and more details with your desired output.

 

How to Get Your Question Answered Quickly 

 

Best Regards

Community Support Team _ Polly

 

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

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.