Need a little help with my code: Run my code if time falls in category. Thank you for helping.

pedie

Well-known Member
Joined
Apr 28, 2010
Messages
3,875
If time in Cells(1, 1) falls between 1 PM - 1:45 AM next day then call macro1 else no.

Code:
Sub timeTRY()
 If Cells(1, 1).Value < "12:00" Then
  MsgBox "Time < 12 PM :)"
   Exit Sub
     Else
    Call Macro1
  End If
End Sub
 
R. What I am trying to do here is that i have a code macro1 that I want to run when the user opens the workbook - it pulls data from web. But the right time to pull data from the site is only between this time (1 PM - 1:45 AM) so i dont want the macro1 to run when the time does not fall between this this given time...now A1 = now()

Thanks again!
 
Upvote 0

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Code:
Sub timeTRY()
 
 If Cells(1, 1) >= TimeValue("13:00:00") Or Cells(1, 1) <= TimeValue("01:45:00") Then
   MsgBox "In range"
 Else
   MsgBox "Out of range"
 End If
 
End Sub
 
Upvote 0
Ruddles, thank you for helping. it works now:). This is what i was looking for.

You have a great day ahead!
Bye now!
 
Upvote 0

Forum statistics

Threads
1,215,955
Messages
6,127,926
Members
449,411
Latest member
AppellatePerson

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