First post, long time excel user, becoming a power user in light of this project.
The situation:
I have a pricing spreadsheet that has all the pricing components listed in a row, which involve calculations, formula's, and text data. The sheet is 1000 rows of different products and prices.
The need:
I need to be able to have the last cell of the row to have a "Date last modified" in it. I have already tried VBA to give me the date of a single cell was last modified, but how could I timestamp when the last time the ROW was modified? It wouldn't be modified directly either, some of the cells use INDEX,MATCH,MATCH functions to other sheets.
The example:
I have a price that includes inbound freight to a hub, interbranch freight to a servicing branch, header freight to the customer, and extra charges added to the price. The individual freights are listed on tables on other sheets, and a function pulls the required one into the main price table. Any time a freight is changed on the freight table, the original price row needs to be updated with a new date.
I know that I could use basic VBA to get the date that each indiviual freight changes, and have them listed in 3 different columns on the main page (which could be useful, but not desired), but what about if anything on the row changes? It doesn't matter if it is just the freight component or not.
Any VBA masters out there have an answer?
The situation:
I have a pricing spreadsheet that has all the pricing components listed in a row, which involve calculations, formula's, and text data. The sheet is 1000 rows of different products and prices.
The need:
I need to be able to have the last cell of the row to have a "Date last modified" in it. I have already tried VBA to give me the date of a single cell was last modified, but how could I timestamp when the last time the ROW was modified? It wouldn't be modified directly either, some of the cells use INDEX,MATCH,MATCH functions to other sheets.
The example:
I have a price that includes inbound freight to a hub, interbranch freight to a servicing branch, header freight to the customer, and extra charges added to the price. The individual freights are listed on tables on other sheets, and a function pulls the required one into the main price table. Any time a freight is changed on the freight table, the original price row needs to be updated with a new date.
I know that I could use basic VBA to get the date that each indiviual freight changes, and have them listed in 3 different columns on the main page (which could be useful, but not desired), but what about if anything on the row changes? It doesn't matter if it is just the freight component or not.
Any VBA masters out there have an answer?