Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi all
i create measue use "IF" Results is OK but Total not show
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
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
To learn more about Power BI, follow me on Twitter or subscribe 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
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 49 | |
| 46 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 88 | |
| 75 | |
| 41 | |
| 26 | |
| 26 |