View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default VBA code to call the name of current file

ThisWorkbook will always return a reference to the workbook
containing the code. Therefore, you can do something like

ThisWorkbook.Activate
' or
Windows(ThisWorkbook.Name).Activate

--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com





"Phatchef24 " wrote
in message ...
Hi,

I was wondering if anybody knew the VBA code to call the name
of the
excel file that contained the module a macro was in?

My issue is that the name of the file changes every month so
using

Windows("210 Product Expense Report - August
Close.xls").Activate

wont work in september. I was just wondering if there was a
way to do
this without using Inputbox and just entering the correct name
each
month.


Thanks!


---
Message posted from http://www.ExcelForum.com/