Hi @New_Airtableuser76 and welcome to the community!
U can use automations to do this. U get 100 runs per month in the free version.
Hi @New_Airtableuser76 and welcome to the community!
U can use automations to do this. U get 100 runs per month in the free version.
Thanks, how would I also prefill multiple fields in a form? I’m trying to prefill Company name & Job Title.
Thanks, how would I also prefill multiple fields in a form? I’m trying to prefill Company name & Job Title.
You can read up on prefilling form via this link.
Be careful; those who submit a form can always alter the prefilled data. Be sure to mention that they shouldn’t do this :winking_face:
You can read up on prefilling form via this link.
Be careful; those who submit a form can always alter the prefilled data. Be sure to mention that they shouldn’t do this :winking_face:
Haha true, I tried doing it the way the article said but it didn’t work for my form located here: Job Application Form I was trying to fill Company Name & Job Title
Do you need these to be editable fields or can they be replaced with formulas?
If you make {Active}
a formula field it would be:
IF(TODAY() > {Expiry Date}, "
")
If {Expiry Date}
is a formula it would be:
IF(
AND({Date Created}, {Package}),
DATEADD({Date Created}, SWITCH(
{Package},
"2 Week Subscription", 14,
"1 Month Subscription", 31
), "days")
)