Hi @Kaitlynn_Carr – this is definitely possible. I’ll take a stab and just guess at your field names. Anything enclosed in { }
needs to be replaced with your actual field names.
This is for {Installer}
IF(
{Manufacturer},
SWITCH(
{Manufacturer},
"SCF", {Retail} * 0.9,
"Maven", {Retail}
)
)
This is for {Wholesale}
IF(
{Manufacturer},
SWITCH(
{Manufacturer},
"SCF", {Retail} * 0.75,
"Maven", {Retail}
)
)
Just format these fields as “Currency” and this should get you what you are looking for. Both of these formulas first check for the presence of a value (any value) in the {Manufacturer}
field before outputting anything. Then, they use a SWITCH()
function that looks at the value of the {Manufacturer}
field and processes a different equation based on its value.
Perhaps I’ve oversimplified what you are needing done – if so, just respond back with what’s lacking.
Hi @Kaitlynn_Carr – this is definitely possible. I’ll take a stab and just guess at your field names. Anything enclosed in { }
needs to be replaced with your actual field names.
This is for {Installer}
IF(
{Manufacturer},
SWITCH(
{Manufacturer},
"SCF", {Retail} * 0.9,
"Maven", {Retail}
)
)
This is for {Wholesale}
IF(
{Manufacturer},
SWITCH(
{Manufacturer},
"SCF", {Retail} * 0.75,
"Maven", {Retail}
)
)
Just format these fields as “Currency” and this should get you what you are looking for. Both of these formulas first check for the presence of a value (any value) in the {Manufacturer}
field before outputting anything. Then, they use a SWITCH()
function that looks at the value of the {Manufacturer}
field and processes a different equation based on its value.
Perhaps I’ve oversimplified what you are needing done – if so, just respond back with what’s lacking.
That worked perfectly! Thank you so so much!