We have an event that is in multiple different locations. We have a form where they select which location they want to attend. I want to automatically send them the calendar invite when they fill out the form based on their response. Ex: We have an e...
Hi! How do I format total cost with if the checkbox is checked it multiplies the cost by 50% and if the checkbox is unchecked, it keeps the full total amount?
Example: cost= $100, if I check the checkbox it totals the cost to 100*.50= $50; if the box...
Can you explain this in more detail? I am unsure what conditions the form needs to meet. I am managing an event with multiple locations and need a calendar invite to be sent to each person that registered based on the location they choose. :grimacin...
Kamille_Parks:
IF(
{Checkbox B},
{Cost} - ({Cost} * IF({Checkbox A}, .5, 1))
{Cost}
)
Sorry, I will send a screenshot to help explain
the total cost needs to be 0 if full co-op is checked and the total cost needs to be multiplied by 50...
Thank you so much! Is there a way to add if another check fox is checked it subtracts the entire expense calculating to 0. Ex: Checkbox A (like you just explained) but then for the total cost if Checkbox B is checked then it subtracts the full amount...