cancel
Showing results for 
Search instead for 
Did you mean: 

"If isnull then" formula question

former_member406941
Participant
0 Kudos

Hello!

I'm trying write a formula that has multiple 'if isnull' directives in it. 

Like this:

if isnull {Billing_Data22.A}

then {Billing_Data22.B}

if isnull {Billing_Data22.B}

then {Billing_Data22.C}

else {Billing_Data22.A}

I realize this formula doesn't work, but hopefully this conveys what I'm looking to accomplish.  If {A} isnull, then {B}, but if {B} also isnull, then {C}, else {A}.

Thanks!

Rich

Accepted Solutions (1)

Accepted Solutions (1)

DellSC
Active Contributor
0 Kudos

Try something like this:

If IsNull({Billing_Data22.A}) then

  If IsNull({Billing_Data22.B}) then

    {Billing_Data22.C}

  else

    {Billing_Data22.B}

else

  {Billing_Data22.A}

-Dell

Answers (0)