If you're alright with the person filling out the form seeing "Anonymous" there, then you can use prefills
If not, you could make an automation that would trigger on if the Name field is not filled in and use an "Update record" action to put the text "Anonymous" in there?
A formula field cannot change the value of a different field by itself. A formula in Airtable can only set the value of its own field.
For example, you could have a formula
IF( {Name}, {Name}, "anonymous")
However, this formula will not change the original {Name} field. On the other hand, if you only want to see the results, this formula may do what you need and save you automation runs.
If you're alright with the person filling out the form seeing "Anonymous" there, then you can use prefills
If not, you could make an automation that would trigger on if the Name field is not filled in and use an "Update record" action to put the text "Anonymous" in there?
Ohh omg ok! I will try the prefills! Thank you so much
A formula field cannot change the value of a different field by itself. A formula in Airtable can only set the value of its own field.
For example, you could have a formula
IF( {Name}, {Name}, "anonymous")
However, this formula will not change the original {Name} field. On the other hand, if you only want to see the results, this formula may do what you need and save you automation runs.
Ahh no wonder it wasn't working
Thanks so much for letting me know!!