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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Filter a measure based on a condition on another measure

Hi there,

I have 2 facts based on 2 differents tables: SalesAmount and BudgetAmount.

I'd like to create a measure "SalesComparsion" which should consider "SalesAmount" only if the Customer (dimension joined to both facts), has a budget, this measure should work though I do not use the "customer" as detail in the analysis, for instance a monthly analysis.

 

How do I solve this?

Thank you

1 ACCEPTED SOLUTION

Hi @Anonymous 

 

Try this to find the Sale Amount:

Measure =
VAR _A =
    FILTER (
        ADDCOLUMNS (
            SALE,
            "Budget", LOOKUPVALUE ( BUDGET[AMOUNT], BUDGET[Customer_COD], SALE[Customer_COD] )
        ),
        [Budget] > 0
    )
RETURN
    SUMX ( _A, [AMOUNT] )

 

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

Appreciate your Kudos!!

 

View solution in original post

4 REPLIES 4
VahidDM
Super User
Super User

Hi @Anonymous 

 

Can you add a sample of your data n a table format, and result?

 

Appreciate your Kudos!!

 

 

Anonymous
Not applicable

Hi @VahidDM ,

some screenshots: the relations of the 3 involved, data contained and the actual results.

ThanksRelationsRelationsDataDataResultsResults

Hi @Anonymous 

 

Try this to find the Sale Amount:

Measure =
VAR _A =
    FILTER (
        ADDCOLUMNS (
            SALE,
            "Budget", LOOKUPVALUE ( BUDGET[AMOUNT], BUDGET[Customer_COD], SALE[Customer_COD] )
        ),
        [Budget] > 0
    )
RETURN
    SUMX ( _A, [AMOUNT] )

 

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

Appreciate your Kudos!!

 

Anonymous
Not applicable

Great!

It's exactly what I war looking for.

Thanks

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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