Forum Discussion
Updating cell values from one cell based on another cell's data
- Jul 08, 2020
Sue_G try something like
=IF(ISNUMBER(B1),"enter date",A1)
when you click on C1 to "enter date" as instructed it will overwrite the formula there.
That said, not the best practice.
I would recommend making D1
=IF(ISNUMBER(B1),C1,A1)
and then use custom formatting to highlight cells in col C that need a date entered
highlight col C and go to custom formatting -> custom formula and enter: =ISNUMBER(B1)
you may also want to lock or maybe gray col D so you/others don't overwrite the formula there.
Sue_G try something like
=IF(ISNUMBER(B1),"enter date",A1)
when you click on C1 to "enter date" as instructed it will overwrite the formula there.
That said, not the best practice.
I would recommend making D1
=IF(ISNUMBER(B1),C1,A1)
and then use custom formatting to highlight cells in col C that need a date entered
highlight col C and go to custom formatting -> custom formula and enter: =ISNUMBER(B1)
you may also want to lock or maybe gray col D so you/others don't overwrite the formula there.