Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Userform Save data To Worksheet & File

I have a user form that is used to input new Job Names & Job Numbers
into a worksheet called JobName within the existing workbook using
text boxes this part works fine. What I would like to know is it
posssible that when I click the add button to insert the Job Name &
Job Number into the worksheet called JobName can the Job Number be
saved into a folder called Project Costs in my documents as an .xls
file (Example as 001.xls)

The path to My Documents is mydir= "C:\Users\Craig\Documents\Project
Costs"

The reason is that I have another userform with a command button and
text box to search for workbooks and open by Job Number using the
following code

Private Sub CommandButton12_Click()

Dim mydir As String

mydir = "C:\Users\Craig\Documents\Project Costs"
If Dir(mydir & "\" & TextBox1.Value & ".xls") < "" Then
Workbooks.Open Filename:=mydir & "\" & TextBox1.Value & ".xls"
Unload Me
Else
MsgBox "File: " & TextBox1.Value & "Job Number Not Found"
End If

End Sub
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 48
Default Userform Save data To Worksheet & File

Here is some code to get you basically what you want. Instead of hard
coding the string names, you could replace with
Me.TextBox1.Value or whatever your case is.

Sub addfilefolder()
Dim folderPath As String
Dim fileName As String

folderPath = "C:\Users\kurtz\Desktop\test"
fileName = TextBoxJobNumber.Value & ".xlsx"
Workbooks.Add
MkDir folderPath
ActiveWorkbook.SaveAs Filename:=folderPath & "\" & fileName
Workbooks(fileName).Close

End Sub


Hope this helps
dk
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Save a worksheet by itself to a new file Rich Excel Discussion (Misc queries) 2 December 9th 08 03:01 PM
Convert and save a worksheet as a PDF file Rob Excel Programming 1 November 20th 07 09:52 PM
Save data entered into UserForm to be Edited later RyanH Excel Programming 8 November 15th 07 06:43 AM
Save a worksheet as an Htm file Neil[_14_] Excel Programming 1 April 29th 04 06:33 PM
How to save each worksheet as seperate file? Henri Excel Programming 2 February 23rd 04 10:11 PM


All times are GMT +1. The time now is 06:38 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"