VBA Macro

j4ymf

Well-known Member
Joined
Apr 28, 2003
Messages
741
Office Version
  1. 365
Platform
  1. Windows
Hello if I use this macro it takes me to GP3
in cell A1 I have =TODAY(), how do I jump to the cell that has todays date in?

<code>Sub Jumpto()

Range("GP3").Select
End Sub</code>

Thank you Jason
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
.
Code:
Sub Jumpto()
    Sheet1.Range("A1").Select
End Sub


Edit sheet name and range as required.
 
Upvote 0
sorry my fault

I have dates in A5:AAA5
and I have =TODAY() in A1, how do I find the same date in the range and jump to that.

Does that make sense

Jay
 
Upvote 0
.
If I correctly understand ... give this a try :

Code:
Option Explicit


Sub DateJump()
  Dim cell As Range
    
  For Each cell In Sheets("Sheet1").Range("A5:AAA5").Cells
    If cell.Value = Sheets("Sheet1").Range("A1").Value Then
        cell.Select
    End If
  Next cell
  
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,728
Members
448,987
Latest member
marion_davis

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