ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Workbook_open Event (https://www.excelbanter.com/excel-programming/413640-workbook_open-event.html)

Hassan

Workbook_open Event
 
Hi All,

How I can run macro when only CSV format file opened.

Thanks

Hassan

Bob Phillips[_3_]

Workbook_open Event
 

Public WithEvents App As Application

Private Sub App_WorkbookOpen(ByVal Wb As Workbook)

If Wb.FileFormat = xlCSV Then

Call myMacro
End If
End Sub

Private Sub Workbook_Open()
Set App = Application
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code


--
__________________________________
HTH

Bob

"Hassan" wrote in message
...
Hi All,

How I can run macro when only CSV format file opened.

Thanks

Hassan




Hassan

Workbook_open Event
 
Dear Bob,

Thnx for reply, I tried but its not working, my macro name is Module2. when
i saved the procedure which given by you, then new window open asking for
macro, when i select from the Module2 from list but next time its not running
macro automatically.

Please help me

"Bob Phillips" wrote:


Public WithEvents App As Application

Private Sub App_WorkbookOpen(ByVal Wb As Workbook)

If Wb.FileFormat = xlCSV Then

Call myMacro
End If
End Sub

Private Sub Workbook_Open()
Set App = Application
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code


--
__________________________________
HTH

Bob

"Hassan" wrote in message
...
Hi All,

How I can run macro when only CSV format file opened.

Thanks

Hassan





Bob Phillips

Workbook_open Event
 
I have no idea what you mean. Why is you macro called Module2, that sounds
like a module name? Why do you have to pick anything, you should use the
name that you presumably know already.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Hassan" wrote in message
...
Dear Bob,

Thnx for reply, I tried but its not working, my macro name is Module2.
when
i saved the procedure which given by you, then new window open asking for
macro, when i select from the Module2 from list but next time its not
running
macro automatically.

Please help me

"Bob Phillips" wrote:


Public WithEvents App As Application

Private Sub App_WorkbookOpen(ByVal Wb As Workbook)

If Wb.FileFormat = xlCSV Then

Call myMacro
End If
End Sub

Private Sub Workbook_Open()
Set App = Application
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code


--
__________________________________
HTH

Bob

"Hassan" wrote in message
...
Hi All,

How I can run macro when only CSV format file opened.

Thanks

Hassan








All times are GMT +1. The time now is 01:16 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com