This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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
)
)
)
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 33 | |
| 26 | |
| 24 | |
| 17 |
| User | Count |
|---|---|
| 67 | |
| 49 | |
| 32 | |
| 27 | |
| 22 |