Hey guys, this throws 'Syntax' error, any ideas why? It wasn't before but right now causes formula to halt:
ifThen(
pricingPlanMismatchDirection=='Down',
activePricingPlanAlert='<p><font color="#000000" style="background-color: rgb(255, 156, 0);">Pricing plan mismatch</font></p>';
);
ifThen(
pricingPlanMismatchDirection=='Up',
activePricingPlanAlert='<p><font color="#000000" style="background-color: rgb(148, 189, 123);">Pricing plan mismatch</font></p>';
);
Thanks
ifThen(
pricingPlanMismatchDirection=='Down',
activePricingPlanAlert='<p><font color="#000000" style="background-color: rgb(255, 156, 0);">Pricing plan mismatch</font></p>';
);
ifThen(
pricingPlanMismatchDirection=='Up',
activePricingPlanAlert='<p><font color="#000000" style="background-color: rgb(148, 189, 123);">Pricing plan mismatch</font></p>';
);
Thanks
Comment