Cannot get a Macro to run automatically
Closed
Leigh G
-
Oct 6, 2009 at 07:55 AM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Oct 6, 2009 at 08:52 PM
venkat1926 Posts 1863 Registration date Sunday June 14, 2009 Status Contributor Last seen August 7, 2021 - Oct 6, 2009 at 08:52 PM
Related:
- Cannot get a Macro to run automatically
- Download automatically while roaming - Guide
- Why does facebook refresh itself automatically - Guide
- How to open a web page automatically in full screen mode in html - Guide
- Transfer data from one excel worksheet to another automatically - Guide
- How to automatically save photos from messenger to gallery - Guide
1 response
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Oct 6, 2009 at 08:52 PM
Oct 6, 2009 at 08:52 PM
instead of this line
If Target.Address = "A:A" Then
use
if target.column=1 then
now see whether it works.
even though if you park the macro "remove_dupliates" in "worksheet page" it works it is better to park it in the standard module.
If Target.Address = "A:A" Then
use
if target.column=1 then
now see whether it works.
even though if you park the macro "remove_dupliates" in "worksheet page" it works it is better to park it in the standard module.