Hello!
Please advise me on the below scenario.
Plan:
I would like to prepare a questionnaire in Excel using VBA, One question for one sheet, probably 20 sheets will be there.
When the user start the test, a timer will be running on "A1", if the time value > 60(1 Minute) then it will go to the...
Hi All,
I have an email template that i got at Chandoo.org. It is working very well. Thanks for all your support of all Chandoo's:).
And i need a help on that.
When i attach some files it gets the path of the file name and the same has been attached while sending the email.
The attached...
Hi,
I used the below code to display the current username while opening the workbook.
Private Sub Workbook_open()
MsgBox "Hello " & Environ("Username") & "!", vbInformation, "Welcome Note"
End Sub
It's working fine. But it gets the userid instead of...
Hi,
I used to send emails from excel using outlook.
When I send emails it displays a security prompt to send or not send the message. It is okay when I send up to five messages. But at the time of 100 emails for each email I need to confirm the security prompt.
It will be helpful if I...
Hi Deb,
Thanks for your suggestion.
Please find the below link.
http://www.2shared.com/file/j5nCijSr/FilePath.html
The code you have mentioned searches a file alone. But I need to get all the file path within a selected folder irrespective of file extensions.
Regards!
Hi Luke,
When I execute the below code it thrown an error like "Run time error'445': Object dosen't support this action".
And it was highlighted on Set fs = Application.FileSearch
Sub ListAllFiles()
Dim fs As FileSearch, ws As Worksheet, i As Long
Set fs = Application.FileSearch
With fs...
Hi,
I ran the below code to get the file path. By selecting the file it retrieve the file path.
Sub GetFilePath()
FilePath = Application.GetOpenFilename("Excel Files (*.xls), *.xls")
If FilePath <> False Then
Range("F5").Value = FilePath
End If
End Sub
But I wish to...
Luke it works well!
To change the from address:
.SentOnBehalfOfName = abc@abc.com
My code is:
With OutMail
.SentOnBehalfOfName = cell.Offset(0, -1).Value
Thank you so much for your assistance from flower to fruit.
With Thanks,
Vargeesh M