nelsosviper
New Member
- Joined
- Dec 2, 2016
- Messages
- 6
New here. I've searched all around and found nothing that will work for me. I had to upgrade to the New 2016 excel and with that comes with my old macros not working. I had to rewrite and use the Visual Basic recorder to do what i need and I'm hung up on one line of code. "Application.Goto"
Before with the old macros I could enter in "?" for the macros to pause so the user can select the predefined cell to "goto". Now, it just selects the same cell every time. I need it to stop so the user can select the reference, which is different everyday. The function of the code is to clear and move information for a restaurant in a 28 day period. Each reference is a day 1-28, so the corresponding day needs to be picked manually and then the macros can continue. Any help would be appreciated.
old code:
=FORMULA.GOTO?("")
NEW CODE
Sub FUNSTUFF()
'
' FUNSTUFF Macro
'
'
Range("Q55:Q98").Select
Selection.Copy
Application.Goto Reference:="n_FOURTEEN"
End Sub
Again, any help would be greatly appreciated.
Before with the old macros I could enter in "?" for the macros to pause so the user can select the predefined cell to "goto". Now, it just selects the same cell every time. I need it to stop so the user can select the reference, which is different everyday. The function of the code is to clear and move information for a restaurant in a 28 day period. Each reference is a day 1-28, so the corresponding day needs to be picked manually and then the macros can continue. Any help would be appreciated.
old code:
=FORMULA.GOTO?("")
NEW CODE
Sub FUNSTUFF()
'
' FUNSTUFF Macro
'
'
Range("Q55:Q98").Select
Selection.Copy
Application.Goto Reference:="n_FOURTEEN"
End Sub
Again, any help would be greatly appreciated.