ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   How to test : files are already opened or not (https://www.excelbanter.com/excel-programming/392574-how-test-files-already-opened-not.html)

kris

How to test : files are already opened or not
 
How to test, wheather a particular excel file is already opened or not.
Please help me

Stefi

How to test : files are already opened or not
 
This function does the job:

Public Function IsOpenWB(ByVal WBname As String) As Boolean
'returns true if workbook is open
Dim objWorkbook As Object
On Error Resume Next
IsOpenWB = False
Set objWorkbook = Workbooks(WBname)
If Err = 0 Then IsOpenWB = True
End Function

Regards,
Stefi


€˛kris€¯ ezt Ć*rta:

How to test, wheather a particular excel file is already opened or not.
Please help me


kris

How to test : files are already opened or not
 
Thanks Stefi you have shown me the way



Stefi

How to test : files are already opened or not
 
You are welcome! Thanks for the feedback!
Stefi


€˛kris€¯ ezt Ć*rta:

Thanks Stefi you have shown me the way




All times are GMT +1. The time now is 11:04 PM.

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