msg/input box

Trevor3007

Well-known Member
Joined
Jan 26, 2017
Messages
667
Office Version
  1. 365
Platform
  1. Windows
hi.

On the worksheet named 'timesheet' I want to put a msgbox to state "input date In Cell A2" and a input box to appear & place the applicable in a2. Then move to the worksheet called 'Sheet1' . Again I need a msg box to say"Attach File" and move the cursor H2 and upon enter run the following code/macro (macro is called ThisWorkbook.GetFilePath):-



Sub GetFilePath()
Dim dialogBox As FileDialog
Set dialogBox = Application.FileDialog(msoFileDialogOpen)




'Set the display properties - these are optional
'All the settings must be applied before the .Show command




'Do not allow multiple files to be selected
dialogBox.AllowMultiSelect = False




'Set the title of of the DialogBox
dialogBox.Title = "Select a file"




'Set the initial path to :
dialogBox.InitialFileName = "C:\data"




'Show the dialog box and output full file path and file name
If dialogBox.Show = -1 Then
ActiveCell.Value = dialogBox.SelectedItems(1)
End If
End Sub


Hoping someone can help & solve.

KR
Trevor3007:cool:
 
Last edited:

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Untested, however, replace all of your code with following and try:
Rich (BB code):
Sub GetFilePath()

    Dim dialogBox As FileDialog
    Set dialogBox = Application.FileDialog(msoFileDialogOpen)
        
    Call GetInputs
          
    'Do not allow multiple files to be selected
    dialogBox.AllowMultiSelect = False
    
    'Set the title of of the DialogBox
    dialogBox.Title = "Select a file"
    
    
    'Set the initial path to :
    dialogBox.InitialFileName = "C:\data"
    
    'Show the dialog box and output full file path and file name
    If dialogBox.Show = -1 Then ActiveCell.Value = dialogBox.SelectedItems(1)
    
End Sub

Private Sub GetInputs()

    With sheets("timesheets")
        .Select
        .Cells(2, 1).Value = InputBox("Please enter date value: ")
    End With
    
    With sheets("Sheet1")
        .Select
        .Cells(2, 8).Select
        MsgBox "Attach file", vbOKOnly
    End With
    
End Sub
 
Last edited:
Upvote 0
Untested, however, replace all of your code with following and try:
Rich (BB code):
Sub GetFilePath()

    Dim dialogBox As FileDialog
    Set dialogBox = Application.FileDialog(msoFileDialogOpen)
        
    Call GetInputs
          
    'Do not allow multiple files to be selected
    dialogBox.AllowMultiSelect = False
    
    'Set the title of of the DialogBox
    dialogBox.Title = "Select a file"
    
    
    'Set the initial path to :
    dialogBox.InitialFileName = "C:\data"
    
    'Show the dialog box and output full file path and file name
    If dialogBox.Show = -1 Then ActiveCell.Value = dialogBox.SelectedItems(1)
    
End Sub

Private Sub GetInputs()

    With sheets("timesheets")
        .Select
        .Cells(2, 1).Value = InputBox("Please enter date value: ")
    End With
    
    With sheets("Sheet1")
        .Select
        .Cells(2, 8).Select
        MsgBox "Attach file", vbOKOnly
    End With
    
End Sub


Morning JackDanIce

FANTASTIC!!!

works a treat ....thank you sooooo much. I would of not sorted myself looking at the code you complied.

Have a great day & many thanks again.

KR
Trevor3007
 
Upvote 0
You're welcome, glad it's resolved

NP...

I can now cross that one off my list as I have a few others awaiting that I have asked Mr Excel to sort, but so far no one has came back to me or there good advice was not suitable.

Many thanks again
KR
Trevor3007:cool:
 
Upvote 0
Untested, however, replace all of your code with following and try:
Rich (BB code):
Sub GetFilePath()

    Dim dialogBox As FileDialog
    Set dialogBox = Application.FileDialog(msoFileDialogOpen)
        
    Call GetInputs
          
    'Do not allow multiple files to be selected
    dialogBox.AllowMultiSelect = False
    
    'Set the title of of the DialogBox
    dialogBox.Title = "Select a file"
    
    
    'Set the initial path to :
    dialogBox.InitialFileName = "C:\data"
    
    'Show the dialog box and output full file path and file name
    If dialogBox.Show = -1 Then ActiveCell.Value = dialogBox.SelectedItems(1)
    
End Sub

Private Sub GetInputs()

    With sheets("timesheets")
        .Select
        .Cells(2, 1).Value = InputBox("Please enter date value: ")
    End With
    
    With sheets("Sheet1")
        .Select
        .Cells(2, 8).Select
        MsgBox "Attach file", vbOKOnly
    End With
    
End Sub


Hi JackDanIce,

so sorry to bother you.

I not sure if its just me...but I wanted the VBA to start upon the the applicable workbook opening, I pasted your code into ' thisworkbook' tan ran it with the VB area , which worked great & thanl you accordingly.

However, opened the workbook recently & your code does not activate?

Any ideas? ( Have checked internet etc for help prior to sending you this post BTW)

KR
Trevor3007
 
Upvote 0

Forum statistics

Threads
1,215,440
Messages
6,124,882
Members
449,193
Latest member
PurplePlop

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