Could someone here provide me a non-VBA method to obtain a formula where its output will increase by 1 whenever calculation occurs in any cells on the worksheet? The formula is allowed to use any cells on the worksheet.
The best I can get to perform such a thing is to use the following volatile UDF:
Public Num As Long
Public Function INC() As Long
Application.Volatile
Num = Num + 1
INC = Num
End Function