![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Apr 2002
Location: Michigan, USA
Posts: 17
|
Dear Excel expert,
I used a template to create a workbook and make it visible. If another workbook was opened when run the VB program, The new workbook is not show up. I close exit the program and go to the folder that stored the new workbook to open it. It is empty. Could you teach me how to make it works when another workbook was opened. thank you very much. The code example is as follow. Private Sub CreateButton_Click() Dim Report As Object . Dim ReportName As String Dim strExcelFileName As String Dim strReportName As String ReportName = App.Path & "template.XLT" Set Report = GetObject(ReportName) strExcelFileName = Application.GetSaveAsFilename(App.Path & "\\" & "test .xls", fileFilter:="Excel Files (*.xls), *.xls") Report.SaveAs FileName:=strExcelFileName strReportName = strExcelFileName Set Report = GetObject(strReportName) Report.Application.Visible = True Report.Parent.Windows(1).Visible = True Report.Worksheets("report1").Select DoEvents With Report.Worksheets(1) .Range("A2").Value = "Last Name" .Range("A3").Value = "First Name" End With Report.Save End Sub ssunchen |
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Auckland, New Zealand
Posts: 4,209
|
Looks like your've tried to do this via
VB ?? If so then...I'll have a look. Please advise. |
|
|
|
|
|
#3 |
|
Board Regular
Join Date: Mar 2002
Location: Cincinnati, Ohio, USA
Posts: 6,824
|
Hi ssunchen
You have answered none of the replies posted to your topics. No one really needs a thankyou, but if most people are like me, they would like to know if they accomplished anything in helping you... Tom |
|
|
|
|
|
#4 |
|
New Member
Join Date: Apr 2002
Location: Michigan, USA
Posts: 17
|
Hello Tom and all others whom have replied to my msgs... I have been much appreciative of all your help in excel and have always updated and thanked those that replied to my msgs. If one was not replied to, it was in error and I apologize, for the most part, I have learned a great deal from this msg board. Thank you.
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|