Hello!
I am trying to make a formula based on an IF statement.
IF one cell = something, then perform this formula. For example,
IF(
{Frequency},
‘Annual’,({Cost/12}))
I would like to have multiple “IF” statements & formulas. Is this possible?
Hello!
I am trying to make a formula based on an IF statement.
IF one cell = something, then perform this formula. For example,
IF(
{Frequency},
‘Annual’,({Cost/12}))
I would like to have multiple “IF” statements & formulas. Is this possible?
Best answer by kuovonne
@Adam_TheTimeSavingCo
I would like to calculate the total monthly cost based on the variables in Frequency.
So if Frequency = Weekly then it would be Cost*4.3
If Frequency = Annual then it would be Cost/12

SWITCH( {Frequency},
"Weekly", {Cost} * 4.3,
"Monthly", {Cost},
"Annual", {Cost} / 12
)
In general, put field names in curly braces {} and put literal text strings in straight quotes " ".
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.