You need to sign in to do that
Don't have an account?

Formula for auto-populating a field only if it is blank.
I want to auto-populate a formula text field only if it is currenlty blank. This allows it to not happen only when the record is created and it won't update if it is already populated.
Try below formula.
Please mark as Best Answer if above information was helpful.
Thanks,
In the cell that you want to auto-populate, enter the following formula:
lessCopy code
=IF(ISBLANK(A1), "your value", A1)
In this example, A1 is the cell that you want to auto-populate. Replace "your value" with the value that you want to populate the cell with.
Copy the formula to other cells, as needed.
In this formula, the IF function checks if cell A1 is blank (i.e., if it contains no data). If it is blank, the formula returns "your value"; otherwise, it returns the original value in cell A1. This way, the formula only auto-populates the cell if it is currently blank.
Regenerate response
https://www.dqfansurvey.one/