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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
The below calculation is returning all "Retained" values, is there something obvious you can see that's making that happen? The second IF statement should be like an ELSEIF, but PBI doesn't like that.
Solved! Go to Solution.
Hi @PBrainNWH
To expand on @aduguid 's measure, for debugging it might be easier like the following. If you aren't getting the correct result, you can always RETURN either of the variables for debugging.
FY25 Status 1 =
VAR _2024 = SUM( 'Donations by Customer by FY'[2024 Donation Dollars] )
VAR _2025 = SUM( 'Donations by Customer by FY'[2025 Donation Dollars] )
VAR _Logic =
IF(
_2024 <> 0
&& _2025 <> 0,
"Retained",
IF(
_2024 = 0
&& _2025 <> 0,
"New425",
IF(
_2024 <> 0
&& _2025 = 0,
"Lapsed",
BLANK()
)
)
)
RETURN
_Logic
I hope this helps.
Hi @PBrainNWH
To expand on @aduguid 's measure, for debugging it might be easier like the following. If you aren't getting the correct result, you can always RETURN either of the variables for debugging.
FY25 Status 1 =
VAR _2024 = SUM( 'Donations by Customer by FY'[2024 Donation Dollars] )
VAR _2025 = SUM( 'Donations by Customer by FY'[2025 Donation Dollars] )
VAR _Logic =
IF(
_2024 <> 0
&& _2025 <> 0,
"Retained",
IF(
_2024 = 0
&& _2025 <> 0,
"New425",
IF(
_2024 <> 0
&& _2025 = 0,
"Lapsed",
BLANK()
)
)
)
RETURN
_Logic
I hope this helps.
Try this measure
FY25 Status =
IF (
SUM('Donations by Customer by FY'[2024 Donation Dollars]) <> 0
&& SUM('Donations by Customer by FY'[2025 Donation Dollars]) <> 0,
"Retained",
IF (
SUM('Donations by Customer by FY'[2024 Donation Dollars]) = 0
&& SUM('Donations by Customer by FY'[2025 Donation Dollars]) <> 0,
"New425",
IF (
SUM('Donations by Customer by FY'[2024 Donation Dollars]) <> 0
&& SUM('Donations by Customer by FY'[2025 Donation Dollars]) = 0,
"Lapsed",
BLANK() -- This will handle any unexpected cases
)
)
)
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 56 | |
| 43 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 123 | |
| 108 | |
| 44 | |
| 32 | |
| 26 |