Feb 19, 2020 01:52 PM
Hi there
I am wondering if there is a way I can have a field to auto-populate based on a previous answer.
E.g. if they choose to attend EVENT 1, it will auto-populate that it is 3 days ‘Number of Days’ field, or if they choose EVENT 2, it will auto-populate that it is 5 days etc.
Is there a way to do this?
Thanks in advance
Solved! Go to Solution.
Feb 19, 2020 02:04 PM
You can do this in a formula field, but not in a number field. In a formula field, just put something like this formula:
SWITCH(
{Event Selection Field},
"Event 1", 3,
"Event 2", 5
)
Feb 19, 2020 02:04 PM
You can do this in a formula field, but not in a number field. In a formula field, just put something like this formula:
SWITCH(
{Event Selection Field},
"Event 1", 3,
"Event 2", 5
)
Feb 20, 2020 09:56 AM
This is great, thank you!