V vinoblm New Member May 5, 2016 #1 hi Guys, i want to count how many times excel files are being opened. precisely, when i open an excel file, count starts and when i open another excel files,counts to two and so on. this should be recorded in the registry file. thanks, Vinodh.
hi Guys, i want to count how many times excel files are being opened. precisely, when i open an excel file, count starts and when i open another excel files,counts to two and so on. this should be recorded in the registry file. thanks, Vinodh.
N Nebu Excel Ninja May 6, 2016 #2 Hi: Use the following code. Code: Set objExcel = GetObject(, "Excel.Application") Set wb = objExcel.ActiveWorkbook Set wb1= objExcel.Workbooks MsgBox wb1.Count Thanks
Hi: Use the following code. Code: Set objExcel = GetObject(, "Excel.Application") Set wb = objExcel.ActiveWorkbook Set wb1= objExcel.Workbooks MsgBox wb1.Count Thanks
V vinoblm New Member May 6, 2016 #3 Dear, thanks. but it doesnt work as i wanted. i want to count how many times excel files are opened,not just any particular file, any excel file. thanks
Dear, thanks. but it doesnt work as i wanted. i want to count how many times excel files are opened,not just any particular file, any excel file. thanks
N Nebu Excel Ninja May 9, 2016 #4 Hi: follow this link http://www.mrexcel.com/forum/excel-...code-count-how-many-time-workbook-opened.html Thanks
Hi: follow this link http://www.mrexcel.com/forum/excel-...code-count-how-many-time-workbook-opened.html Thanks