Morning Excel and VB wizards,
I need some help, more like spoon feeding in fact.
I am trying to create a workbook that will be used to record and store appraisals on a network drive and automatically update some cells in another tracker workbook.
But before I get ahead of myself I’d like to tackle the 'save as' issue first.</SPAN>
Id like to be able to have the Submit button Save the workbook to a network location with a format like
"1-2-1 [Persons full name] [Teamleader] [Date].xlsm
Excel Example:
A1='Persons full name'</SPAN>
A2='Team Leader'</SPAN>
A3='Client/contract name'
I currently have:
I can’t find a way to take the [persons full name] from a cell reference.
scrap all of the below if it makes it easier.</SPAN></SPAN>
Sub Button1_Click()
'
' Button1_Click Macro
'</SPAN>
'
ActiveWorkbook.SaveAs Filename:="\\testserver\test</SPAN> booklet2" & _
Format(Now(), "mm_dd_yyyy hh mm AMPM"), FileFormat:= _
xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
End Sub</SPAN>
Regarding the second point of having the submit button update another workbook tracker for the appraisals, I will attempt this with another button until I have gotton the other function to work and then will attempt to merge them.
In a perfect world i’d like cell A3 [contract/client name] to dictate where these will be saved using some kind of IF statement as the 121’s will be saved in sub folders defined by cleint/contract name. But this is well beyond my current understanding of VBA. Don’t try to run before you can walk huh.
Any help would be greatfully recieved.</SPAN>
I need some help, more like spoon feeding in fact.
I am trying to create a workbook that will be used to record and store appraisals on a network drive and automatically update some cells in another tracker workbook.
But before I get ahead of myself I’d like to tackle the 'save as' issue first.</SPAN>
Id like to be able to have the Submit button Save the workbook to a network location with a format like
"1-2-1 [Persons full name] [Teamleader] [Date].xlsm
Excel Example:
A1='Persons full name'</SPAN>
A2='Team Leader'</SPAN>
A3='Client/contract name'
I currently have:
I can’t find a way to take the [persons full name] from a cell reference.
scrap all of the below if it makes it easier.</SPAN></SPAN>
Sub Button1_Click()
'
' Button1_Click Macro
'</SPAN>
'
ActiveWorkbook.SaveAs Filename:="\\testserver\test</SPAN> booklet2" & _
Format(Now(), "mm_dd_yyyy hh mm AMPM"), FileFormat:= _
xlOpenXMLWorkbookMacroEnabled, CreateBackup:=False
End Sub</SPAN>
Regarding the second point of having the submit button update another workbook tracker for the appraisals, I will attempt this with another button until I have gotton the other function to work and then will attempt to merge them.
In a perfect world i’d like cell A3 [contract/client name] to dictate where these will be saved using some kind of IF statement as the 121’s will be saved in sub folders defined by cleint/contract name. But this is well beyond my current understanding of VBA. Don’t try to run before you can walk huh.
Any help would be greatfully recieved.</SPAN>