Hi,
I want to create a button in a form to 'edit' an existing Excel file, that is to add something (a variable's value from a table in Access) to a certain cell in the Excel file. I do not want the VBA to overwrite the Excel file because it will scrape all the existing data from the excel, but rather just want to add some data to the Excel file. Can anyone help me how?
note: I already have a way to extract the directory from the excel file.
So basically this is the steps what I want :
a button is clicked (OK)
a dialog window is opened to specify the directory of the existing excel file (OK)
vba code updates/adds data to the excel file ---> need help
save excel file
Done!
lets say the data I want to add is
I want to create a button in a form to 'edit' an existing Excel file, that is to add something (a variable's value from a table in Access) to a certain cell in the Excel file. I do not want the VBA to overwrite the Excel file because it will scrape all the existing data from the excel, but rather just want to add some data to the Excel file. Can anyone help me how?
note: I already have a way to extract the directory from the excel file.
So basically this is the steps what I want :
a button is clicked (OK)
a dialog window is opened to specify the directory of the existing excel file (OK)
vba code updates/adds data to the excel file ---> need help
save excel file
Done!
lets say the data I want to add is
Code:
Dim CustName as string
Dim directory as string
Dim strFilter As String
Dim StrInputFileName As String
Dim objExcel As Object
Dim objBook As Object
Dim objSheet As Object
strFilter = ahtAddFilterItem(myStrFilter, "Excel Files (*.xlsx)", "*.xlsx")
strSaveFileName = ahtCommonFileOpenSave( _
OpenFile:=False, _
Filename:=rst!vendor, _
filter:=strFilter, _
Flags:=ahtOFN_OVERWRITEPROMPT Or ahtOFN_READONLY)
directory=strSaveFileName 'the value of the variable will be like C:\User\Desktop\A.xlsx
Set objExcel = CreateObject("Excel.Application")
Set objBook = objExcel.Workbooks.add
Set objSheet = objExcel.Worksheets("Sheet1")
objBook.SaveAs (strSaveFileName) 'I suspect of this caused the VBA to overwrite the excel file
CustName=dlookup("CustName","TblCustomer","CustID=" & Me.CustomerBox.Value)
objSheet.Range("A2").Value=CustName
objBook.Save