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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Anonymous
Not applicable

Incorrect data using measure condition

Hi All,

 

I'm stuck at a measure where its not working as intended. I'm trying to check my Open Pipeline numbers against each SE but strangely my measure is giving the same number for each SE. 

What exactly I'm doing wrong here??

 

 

Himanshu_1306_0-1707496231352.png

Also if I remove the below condition then it is giving correct number but I want the condition to be there. 

&& VW_F_ACV[PRIMARY_SE] <> BLANK())

Himanshu_1306_1-1707496391049.png

 

 

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous

 

Based on your description,

 

&& VW_F_ACV[PRIMARY_SE] <> BLANK()

 

 

it seems like the condition is causing unexpected behavior in your measure, resulting in the same number for each SE. This issue typically arises when the measure or its condition does not correctly interact with the context of the data it's being applied to.

 

Here are a couple of steps to troubleshoot and potentially resolve the issue:

 

Review Measure Calculation: Ensure that your measure is correctly set up to calculate Open Pipeline numbers. The measure should be designed to aggregate or calculate values based on the SE (Sales Executive) context. If the measure is not correctly recognizing the SE context, it might return the same value across different SEs.

 

Context Transition: The issue might be related to context transition, where the filter context (in this case, not being blank) is not correctly applied to each SE.

 

Measure = CALCULATE(
    [YourOriginalMeasure],
    FILTER(
        ALL('VW_F_ACV'),
        VW_F_ACV[PRIMARY_SE] <> BLANK()
    )
)

 

 

Check Relationships: Ensure that there are correct relationships set up in your data model between the SE dimension and the table. Incorrect or missing relationships can lead to unexpected results when filtering or aggregating data.

 

If you're still having problems, provide some dummy data and the desired outcome. It is best presented in the form of a table.

 

Regards,

Nono Chen

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

Daniel29195
Community Champion
Community Champion

@Anonymous 

 

is it possible that you could share the power bi file to take a look ? 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 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.

Top Solution Authors