Hi @Shadowsing
If there is any change in say column B, then corresponding cell in column A should capture when that change was made
If you do not want use VBA, here is a workaround, please have a check.
- Go to File > Options > Formulas > Tick the box of "Enable iterative calculation".
- Select the cells in Column A, set the Date format.
- Add an auxiliary column, such as column C. You can hide it later.
- Enter the formula
=IF(OR(B2="",A2=""),"",IF(A2=NOW(),B2,C2))
in C2, enter the formula=IF(OR(A2="",B2<>C2),NOW(),A2)
in A2.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.