Results 1 to 5 of 5

VBA to define alias for workbook location to be used in formula

Threaded View

  1. #1
    Registered User
    Join Date
    09-13-2013
    Location
    Netherlands
    MS-Off Ver
    Excel 2010
    Posts
    49

    VBA to define alias for workbook location to be used in formula

    Hi folks,

    The hospital I work for provides an excel workbook for each employee in which they have to keep track of their working hours, sick-leave, holidays etc (called a jaarkaart in Dutch).
    I'm trying to make a separate excel workbook in which an automatically updated overview will be made of the data each of the people in our department fills in in his/her jaarkaart.
    Each day is represented in the jaarkaart by a block of 4 cells, the top two of which are used to fill in the working hours (am and pm) and the bottom two are used for codes to indicate illness, days off etc (see attached example).

    Currently, my overview spreadsheet is filled with formulas such as this:
    =IF(OR('I:\secretary\holidays\holidays 2016\[jaarkaart-2016 Thirsa.xlsx]Sheet1'!C$12="";'I:\secretary\holidays\holidays 2016\[jaarkaart-2016 Thirsa.xlsx]Sheet1'!D$12="");SUM('I:\secretary\holidays\holidays 2016\[jaarkaart-2016 Thirsa.xlsx]Sheet1'!C$12:D$12)/2;'I:\secretary\holidays\holidays 2016\[jaarkaart-2016 Thirsa.xlsx]Sheet1'!C$12)
    Four of these per day for each employee.....
    So you can probably imagine that even for our small group of 12 people, when I try, for example, to update 2016 to 2017 by find-replace all....excel crashes because that's too much work.

    Therefore, I was wondering if it is possible to define aliasses for the locations of the jaarkaarten in VBA and use those aliasses in the formulas, so that the formulas will end up looking something like this:
    =IF(OR(Thirsa!C$12="";Thirsa!D$12="");SUM(Thirsa!C$12:D$12)/2;Thirsa!C$12)
    I tried making a private sub which basically contained the following for each employee:
    Dim Thirsa As Sting
    Thirsa = I:\secretary\holidays\holidays 2016\[jaarkaart-2016 Thirsa.xlsx]Sheet1
    But that didn't work.

    Hope you can help me out.
    Thanks in advance.
    Thirsa
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] VBA refine code .PrintOut to define pdf Filename and current location
    By cnhtractor in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-20-2014, 06:37 PM
  2. [SOLVED] Specify export pdf file location is location workbook is saved.
    By dantray02 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-30-2014, 01:13 PM
  3. Call a specific workbook from a file location and move worksheet to different workbook
    By dwhite30518 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-30-2014, 01:46 AM
  4. Replies: 9
    Last Post: 06-24-2013, 04:14 PM
  5. define vba for only one workbook
    By sarelvv in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 08-03-2012, 09:51 AM
  6. Export worksheets from a workbook to the current workbook location path
    By legendkiller420 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-22-2010, 04:08 AM
  7. [SOLVED] delete workbook from one location and save workbook to new locatio
    By Damien in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 08-03-2006, 10:40 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1