Hello, here is my problem with the execution of an excel formula.
These are the requirements:
- I have several lines in an excel sheet.
- At the end of each line there is a field called "Month".
- If someone enters new values in this line, the current month should be inserted.
- If the values get modified, the month must not be changed.
To include the current month, I use some formula like this (A10 is just a random field which will be filled):
=IF(A10<>0; MONTH(NOW()); "")
Now I need some condition to check if the field contains a month allready, and if it is so, do nothing. I tried the following (A15 should contain the month):
=IF(A15 <> ""; IF(A10<>0; MONTH(NOW()); "") ; )
To decide if the field should be changed by the formular, I have to check its current value. The problem is, that this will end up in an circular reference to the field itself.
Has anyone a working solution for this kind of problems? I try not to use any VBA code in there.