Skip to main content

Hello,

I need help with my formula.

If <total amount paid> is not blank, then the cell becomes <ACT Planner>. However if <total amount paid> is blank, then cell becomes <EST Planner>.

I got this far, but can't get the 2nd part to work:

IF(
{Total Amount Paid},
{ACT Planner}
)
 
Thank you!
You’re so close!

IF
(
    {Total Amount Paid},
    {ACT Planner},
    {EST Planner}
)

Thank you soo much!


Reply