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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
nanutum
Helper I
Helper I

IF in Measure Why Total not sum

Hi all

i create measue use "IF"  Results is OK but Total not show 

nanutum_0-1594209072405.png

 

Lost Customer Code 

 

 

Lost_Customer = 
    IF(AND([Bought_P1]<> BLANK (),[Bought_P2] = BLANK ()),
        DISTINCTCOUNT(Cust[Cust_Code]),
            BLANK()
    )

 

 

New Customer Code

 

New_Customer = 
        IF(AND([Bought_P1] = BLANK(),[Bought_P2] <> BLANK ()),
            DISTINCTCOUNT(Cust[Cust_Code]),
                BLANK()
        )

 

 

please help me . Thankyou 

 

2 REPLIES 2
mahoneypat
Microsoft Employee
Microsoft Employee

Please try this approach, referencing your existing measure in a new measure to use in its place.  Replace Table[Customer] with the customer column used in your visual.

 

NewMeasure = SUMX(VALUES(Table[Customer]), [Lost_Customer])

 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Dear @mahoneypat 

 

MY Measure 

Lost_Customer = 
    IF(AND([Bought_P1]<> BLANK (),[Bought_P2] = BLANK ()),
        DISTINCTCOUNT(Cust[Cust_Code]),
            BLANK()
    )

Your Measure 

NewMeasure = SUMX(VALUES(Table[Customer]), [Lost_Customer])

 

i need have only one measure i try this but Data not show

Lost_Cust_01 = 
var _Lost_Cust = IF(AND([Bought_P1]<> BLANK (),[Bought_P2] = BLANK ()),
                    DISTINCTCOUNT(Cust[Cust_Code]),
                        BLANK()
                )
Return 
        SUMX(VALUES(Cust[Cust_Code]),_Lost_Cust)

please help me again

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.