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
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

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
v-rongtiep-msft
Community Support
Community Support

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! 🙂

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
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.

Top Solution Authors