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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I'm very new to Power BI and need help adjusting a measure. I'm working with summarized end-of-month data. So far I have this:
Net Worth =
DIVIDE(
'BGLCOAF'[Reserves],
'BGLCOAF'[Total Assets],
0
)
However, [Net Worth] only calculates correctly for March, June, September, and December because every other month's calculation should include a third variable "Net Income". For example:
For January's calculation = ([Reserves] + [January Net Income]) / [Total Assets]
For February = ([Reserves] + [January Net Income] + [February Net Income]) / [Total Assets]
For March = [Reserves] / [Total Assets]
And the same pattern for each quarter
I feel like something can be accomplished with conditional functions, but I also think I need to incorporate time or time-intelligence functions and I'm pretty unfamiliar with those.
I appreciate any help!
Hi @mjpollock ,
I think your code should look like as below.
Net Worth with Condition =
IF (
'BGLCOAF'[Month] IN { "March", "July", "September", "December" },
DIVIDE ( 'BGLCOAF'[Reserves], 'BGLCOAF'[Total Assets], 0 ),
DIVIDE ( 'BGLCOAF'[Reserves] + [Net Income], 'BGLCOAF'[Total Assets], 0 )
)
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.