VBA - Button saves TextBox data in dif. Workbook
Closed
Srojassg
Posts
6
Registration date
Friday September 21, 2018
Status
Member
Last seen
October 2, 2018
-
Updated on Oct 1, 2018 at 10:30 AM
Blocked Profile - Oct 1, 2018 at 04:51 PM
Blocked Profile - Oct 1, 2018 at 04:51 PM
Related:
- VBA - Button saves TextBox data in dif. Workbook
- At button - Guide
- Vba case like - Guide
- 2007 microsoft office add-in microsoft save as pdf or xps - Download - Other
- Tmobile data check - Guide
- Number to words in excel formula without vba - Guide
1 response
Its ok. Record a macro doing exactly what you want, and substitute the hardcoded items into variables.
It's kind of fun to do the impossible! -Walter Elias Disney
Sub Macro1()--
'
' Macro1 Macro
'
'
ChDir "C:\Users\User\Desktop"
ActiveWorkbook.SaveAs Filename:= _
"C:\Users\User\Desktop\thisisthenewbookname.xlsx", FileFormat:= _
xlOpenXMLWorkbook, CreateBackup:=False
End Sub
It's kind of fun to do the impossible! -Walter Elias Disney