track changes without using VBA

rjplante

Well-known Member
Joined
Oct 31, 2008
Messages
569
Office Version
  1. 365
Platform
  1. Windows
I have a spreadsheet that has five columns in it Column A is for users to enter to do items. Columns D and E are for date entered, and last updated. I currently use a macro that uses the Worksheet_Change (ByVal Target As Range) feature to monitor changes to Column A in the worksheet and when data is first entered into a blank cell in column A, todays date gets entered into Column D. If Column A is edited on a later date, then the date is entered/updated in Column E. The problem I am having is that when I upload my spreadsheet onto Microsoft One Drive, and share it with all of the prospective users (10 people), none of the macros function. Is there a non macro way to achieve this (enter an updated date when changes are made in column A)?
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
I have a spreadsheet that has five columns in it Column A is for users to enter to do items. Columns D and E are for date entered, and last updated. I currently use a macro that uses the Worksheet_Change (ByVal Target As Range) feature to monitor changes to Column A in the worksheet and when data is first entered into a blank cell in column A, todays date gets entered into Column D. If Column A is edited on a later date, then the date is entered/updated in Column E. The problem I am having is that when I upload my spreadsheet onto Microsoft One Drive, and share it with all of the prospective users (10 people), none of the macros function. Is there a non macro way to achieve this (enter an updated date when changes are made in column A)?
When you say the value in Column A is "updated" doing re-entering the same value constitute an update? even though the value did not change?

Are you other users aware that you have a macro-enabled Workbook? Excel gives a warning when you try to open a macro-enabled Workbook? Are they not allowed to do this?
 
Upvote 0
Changes would be only entries that result in a different value that what currently exists. The spreadsheet is shared on Microsoft One Drive. This allows users to edit the spreadsheet using the online web version of excel for data entry, which doesn't allow macros.
 
Upvote 0
Changes would be only entries that result in a different value that what currently exists. The spreadsheet is shared on Microsoft One Drive. This allows users to edit the spreadsheet using the online web version of excel for data entry, which doesn't allow macros.
Could a helper column be added? This is to avoid circular references. You need to be able to test the value of the cell you are updating (i.e. column D). I think the only way to do this without creating a circular reference is to write a value into another cell (column)
 
Upvote 0
Yes, a helper cell in another column would be possible.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top