Sometimes it could be necessary to define an intermediate business calculation that is subsequently used by a different business calculation.
E.g
bizcalc_1
case(
when:budget_version == ‘Actual’
, then: date_day
, else: null
)
bizcalc 2
max(bizcalc_1)