cells selection vba

rakesh seebaruth

Active Member
Joined
Oct 6, 2011
Messages
303
hi Guys


Please find my drop box link

https://www.dropbox.com/s/t87ax5n6l6exa8o/testing2018.xlsm?dl=0

When sanction letter is selected, sheet sanction letter is opened and cell A2 is activated.Same applies for other menus

Today's date is inserted in A2,SL inserted in B2 ,002 is inserted in C2, 12 is inserted F2 and 2018 is inserted in G2. How to prevent this from happening . Each time i select sanction letter or other menus the above occurs.

thanks/regards

rakesh
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Try changing the selection event to
Code:
   If Intersect(Target, Range("A:A")) Is Nothing Then Exit Sub
   If Target.CountLarge > 1 Or Target.row < 4 Then Exit Sub
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,582
Members
449,089
Latest member
Motoracer88

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