I am creating a budget and have amounts incoming at various frequencies. I want to create a field that calculates the monthly amount based on a formula. This is the formula I have got but I get an Invalid Formula error message:
IF(
{Frequency} = "Daily", {Amount} * 30,
IF(
{Frequency} = "Weekly", {Amount} * 4.33,
IF(
{Frequency} = "Bi-weekly", {Amount} * 2.167,
IF(
{Frequency} = "Monthly", {Amount},
IF(
{Frequency} = "Quarterly", {Amount} / 3,
IF(
{Frequency} = "Twice-Annually", {Amount} / 6,
IF(
{Frequency} = "Annually", {Amount} / 12,
0 // Default case, if none of the above matches
)
)
)
)
)
)
)
How do I need to correct it?