Subs new to this

kingsley1

New Member
Joined
Oct 12, 2024
Messages
3
Office Version
  1. 365
Platform
  1. MacOS
Hi I’m trying to animate a date picker for a worksheet. I’ve worked out column A as seen in the picture but I want my team to be able to do the same thing in column E when the task is completed. Can anyone help please?
 

Attachments

  • IMG_1897.jpeg
    IMG_1897.jpeg
    99.9 KB · Views: 30
  • IMG_1898.jpeg
    IMG_1898.jpeg
    86.5 KB · Views: 31

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
try changing the Intersect line to
VBA Code:
    If Not Intersect(Target, Range("A3:A420")) Is Nothing Or _
       Not Intersect(Target, Range("E3:E420")) Is Nothing Then
 
Upvote 0
try changing the Intersect line to
VBA Code:
    If Not Intersect(Target, Range("A3:A420")) Is Nothing Or _
       Not Intersect(Target, Range("E3:E420")) Is Nothing Then
Thank you Sir! I shall when I get home. Really appreciate it.
 
Upvote 0
try changing the Intersect line to
VBA Code:
    If Not Intersect(Target, Range("A3:A420")) Is Nothing Or _
       Not Intersect(Target, Range("E3:E420")) Is Nothing Then
Good Morning I'm sorry I am very new to this and it doesn't seem to be working for me. Thank you for your suggestion it's no doubt me who just doesn't understand it
 
Upvote 0

Forum statistics

Threads
1,223,230
Messages
6,170,883
Members
452,364
Latest member
springate

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