Boy am I glad I found this forum. I'm hoping some of you can help a novice out...
I have a file that tracks supplies and therefore has a sheet for each of our office locations (a total of 30 or so tabs/sheets). Every Monday the Admin for each office needs to review their sheet and adjust the number of supplies distributed or received for the prior week. This then auto calculates the current inventory.
We are having problems making sure it's getting completed. To fix the problem, I wanted to add a date stamp on each tab/sheet (BTW, is it a tab or sheet?) so when a value is changed in one of the four tables on that sheet, the date/time auto updates.
On each sheet I have the following:
The 4 tables are in the following range: A2:K28
My auto date/time is located in B33 and contains the following formula (which I found on this forum)
=IF(AND(A2:K28<>"",A2:K28<>0),A2:K28,IF(B33<>"",NOW(),""))
The formula works well if and when Iterative Calculation function is turned on.
So here is my problem... If I go to another sheet and make a change say in F128, the date/time formula in B33 on the other sheets update to reflect the change. Not what I want.
I have even attempted to use the sheet_name! before the range (see below) but that did not work and gave me an error (can't remember which one at the moment).
=IF(AND(sheet_name!A2:K28<>"",sheet_name!A2:K28<>0),sheet_name!A2:K28,IF(sheet_name!B33<>"",NOW(),""))
Any thoughts on how I can get the date to auto update just when the cells on that sheet change? I'm not a VBA guru so I would prefer to stay away from it if at all possible and just use logic and formulas.
Thanks
F
I have a file that tracks supplies and therefore has a sheet for each of our office locations (a total of 30 or so tabs/sheets). Every Monday the Admin for each office needs to review their sheet and adjust the number of supplies distributed or received for the prior week. This then auto calculates the current inventory.
We are having problems making sure it's getting completed. To fix the problem, I wanted to add a date stamp on each tab/sheet (BTW, is it a tab or sheet?) so when a value is changed in one of the four tables on that sheet, the date/time auto updates.
On each sheet I have the following:
The 4 tables are in the following range: A2:K28
My auto date/time is located in B33 and contains the following formula (which I found on this forum)
=IF(AND(A2:K28<>"",A2:K28<>0),A2:K28,IF(B33<>"",NOW(),""))
The formula works well if and when Iterative Calculation function is turned on.
So here is my problem... If I go to another sheet and make a change say in F128, the date/time formula in B33 on the other sheets update to reflect the change. Not what I want.
I have even attempted to use the sheet_name! before the range (see below) but that did not work and gave me an error (can't remember which one at the moment).
=IF(AND(sheet_name!A2:K28<>"",sheet_name!A2:K28<>0),sheet_name!A2:K28,IF(sheet_name!B33<>"",NOW(),""))
Any thoughts on how I can get the date to auto update just when the cells on that sheet change? I'm not a VBA guru so I would prefer to stay away from it if at all possible and just use logic and formulas.
Thanks
F