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