shrivallabha
Excel Ninja
I was going through some time stamps options shown up on the internet including the one posted by Chandoo. Mostly they seem to use iterations to create time stamp.
In MS Help for CELL function I read that it checks information for the last changed cell if the optional reference is kept empty.
Suppose we have table data in A2:F20 and if we put a formula like below in cell G2:
=IF(CELL("row")=ROW(),NOW(),G2)
and copy it down. It does create a time stamp (with circular reference warning) when data is changed in that row. It is volatile!
I am not sure if this is useful or not but there could be some places where it could be used (not just stamps).
Please let me know your thoughts and observations on this.
In MS Help for CELL function I read that it checks information for the last changed cell if the optional reference is kept empty.
- reference Optional. The cell that you want information about. If omitted, the information specified in the info_type argument is returned for the last cell that was changed. If the reference argument is a range of cells, the CELL function returns the information for only the upper left cell of the range.
Suppose we have table data in A2:F20 and if we put a formula like below in cell G2:
=IF(CELL("row")=ROW(),NOW(),G2)
and copy it down. It does create a time stamp (with circular reference warning) when data is changed in that row. It is volatile!
I am not sure if this is useful or not but there could be some places where it could be used (not just stamps).
Please let me know your thoughts and observations on this.