+ Reply to Thread
Results 1 to 18 of 18

Help with Holiday Spreadsheet

Hybrid View

  1. #1
    Registered User
    Join Date
    02-04-2014
    Location
    Gloucester
    MS-Off Ver
    Excel 2007
    Posts
    9

    Help with Holiday Spreadsheet

    Hi,

    I've got the attached spread sheet from this website (So helpful!!) and adapted it slightly however I don't really know what im doing!

    What I need is on Schedule tab I need there to be room for upto 30 employees. I've tried to insert rows but this messes up the dates for the rest of the calendar and the monthly tabs.

    Can someone help me add more rows or tell me how I can do so?

    Thanks a lot in advance for any help!
    Holiday Calander.xls
    Jodi

  2. #2
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.95 for Mac MS 365
    Posts
    8,684

    Re: Help with Holiday Spreadsheet

    You highlighted a row and right clicked and hit insert and it messed things up. What did it mess up? I just did it and everything looked ok to me.
    Make contributors happy, click on the "* Add Reputation" as a way to say thank you.
    Sam Capricci

  3. #3
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.95 for Mac MS 365
    Posts
    8,684

    Re: Help with Holiday Spreadsheet

    here it is back with inserted rows, tell me what I'm missing.
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    02-04-2014
    Location
    Gloucester
    MS-Off Ver
    Excel 2007
    Posts
    9

    Re: Help with Holiday Spreadsheet

    Thank you so much!!!!!

  5. #5
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.95 for Mac MS 365
    Posts
    8,684

    Re: Help with Holiday Spreadsheet

    Glad to be of help. I didn't do it with all the schedules but all I did was highlight a group of rows starting in the row # area, then right clicked and hit insert and it inserted the rows.
    You should be able to repeat that as needed.
    If your issue is solved don't forget to mark the post as solved using the thread tools at the top of the post.
    And thanks for the reputation point too.

  6. #6
    Registered User
    Join Date
    02-04-2014
    Location
    Gloucester
    MS-Off Ver
    Excel 2007
    Posts
    9

    Re: Help with Holiday Spreadsheet

    Hi Sambo kid ive just checked again and its altered the dates on the year calender so they are all 0 apart from January? Its the same on all the individual month tabs aswell apart from January..Any ideas?

    Thanks

  7. #7
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.95 for Mac MS 365
    Posts
    8,684

    Re: Help with Holiday Spreadsheet

    Oh, I see what your issue is, let me think on it.

  8. #8
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.95 for Mac MS 365
    Posts
    8,684

    Re: Help with Holiday Spreadsheet

    There are a lot of complex formulas involved in this. Sorry but I'm not able to spend the time needed to sort through them to see what each references. I'm going to try to flag someone with better skills than I have to see if they can help you.

  9. #9
    Registered User
    Join Date
    02-04-2014
    Location
    Gloucester
    MS-Off Ver
    Excel 2007
    Posts
    9

    Re: Help with Holiday Spreadsheet

    Ok Thank you

  10. #10
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Help with Holiday Spreadsheet

    Sambo called in the reinforcements!

    Ok, here's what's falling apart:

    The dates of the Year Calendar use this formula (using February J7):

    =INDEX(Schedule!$D$6:$AS$171, 16,(ROW()-7)*7+COLUMN()-9)

    What does it mean? Well, I have no clue really, but I do understand some of it. The INDEX is where it's pulling from and the 16 is the row it cares about.

    Let's modify this a bit so things can adapt. The 16 needs to become a referenced value. =ROW(Schedule!$A$16)

    So, select J7:P12, hit Ctrl+H to find and replace.

    Find: 16, (R
    Replace with: ROW(Schedule!$A$16), (R

    This needs to be done with each block of month's formulas.

    December's formula is =INDEX(Schedule!$D$6:$AS$171, 166, (ROW()-34)*7+COLUMN()-17). That 166 needs to become =ROW(Schedule!$A$166).

    After you have modified the 11 blocks (January doesn't matter, the 1 isn't going anywhere), go insert your 20 rows into each name list.


    Now when you insert rows, the row number it was targeting will change with the increase and everything will stay lined up.
    Make Mom proud: Add to my reputation if I helped out!

    Make the Moderators happy: Mark the Thread as Solved if your question was answered!

  11. #11
    Registered User
    Join Date
    02-04-2014
    Location
    Gloucester
    MS-Off Ver
    Excel 2007
    Posts
    9

    Re: Help with Holiday Spreadsheet

    Hi there, Thank you for your help! Ok so ive changed the formula for Feb which seems to have worked as all the dates are still showing up in the individual calender and ive added more rows. So if i wanted to now change march ( which is currently all o') do i enter the same formula as Jan? Ive pressed Ctrl=H and entered the same thing but nothing has changed. I Apologise if im being really thick but i really don't have a clue when it comes to formulas!!

    Thanks again

    Jodi

  12. #12
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Help with Holiday Spreadsheet

    You need to modify the formula for all blocks prior to inserting rows.

    OR

    You can insert all the rows, and then manually redirect the formulas afterwards, but this involves a lot of counting.

    Look at September's formula:

    =INDEX(Schedule!$D$6:$AS$171, 121, (ROW()-25)*7+COLUMN()-17)

    121 is the row this is pointing to. You can skip my Row method and insert all the rows you need, and then adjust each month's formula by just changing the number before the 2nd comma to the row# of the index that it should match up to. For the range of D6:AS171, September's dates begin in D126. That is 121 rows down. If you insert 30 rows, you'll need to change 121 to 151. This number is different for each's month's block and will needed updated manually if you don't use the ROW() reference like I suggested.


    So, if a formula before inserting rows is =index(a999:d9999, 77, something, something) you'll be changing the 77 to row(a77). This makes everything much simpler.

  13. #13
    Registered User
    Join Date
    02-04-2014
    Location
    Gloucester
    MS-Off Ver
    Excel 2007
    Posts
    9

    Re: Help with Holiday Spreadsheet

    Ok ive had a little play trying to do this by adding the rows first and then changing the number to however many rows I added but the calendar is still show O's.

    Would anybody be able to add the formulas in for me so I don't need to touch anything! I think Im making it more confusing then it needs to be and just making a mess of things!

    Thanks

    Jodi

  14. #14
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Help with Holiday Spreadsheet

    On Lunch now. Let's see if I can bang this out in less than 30.

  15. #15
    Registered User
    Join Date
    02-04-2014
    Location
    Gloucester
    MS-Off Ver
    Excel 2007
    Posts
    9

    Re: Help with Holiday Spreadsheet

    Your a star, really appreciate it.

  16. #16
    Forum Expert daffodil11's Avatar
    Join Date
    07-11-2013
    Location
    Phoenixville, PA
    MS-Off Ver
    MS Office 2016
    Posts
    4,465

    Re: Help with Holiday Spreadsheet

    Here you go.

    Insert as many rows as you want. Should stay consistent now.

    Copy of Holiday%20Calander(1).xls

  17. #17
    Registered User
    Join Date
    02-04-2014
    Location
    Gloucester
    MS-Off Ver
    Excel 2007
    Posts
    9

    Re: Help with Holiday Spreadsheet

    Thank you thank you thank you!! Will give it a go!

  18. #18
    Registered User
    Join Date
    02-04-2014
    Location
    Gloucester
    MS-Off Ver
    Excel 2007
    Posts
    9

    Re: Help with Holiday Spreadsheet

    Added all my rows and everything is working perfectly. Thank you so much for sorting this for me. I will make this as solved. Thanks again.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Creating A Staff Holiday Spreadsheet
    By kickme93 in forum Excel General
    Replies: 2
    Last Post: 09-18-2013, 04:49 AM
  2. [SOLVED] IF function using WORKDAYS and a Bank Holiday list - trying to add new holiday dates
    By jowarks in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 07-05-2013, 05:42 AM
  3. Excel spreadsheet holiday to Outlook Shared Calendar and update spreadsheet
    By tigerdel in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-25-2012, 06:04 AM
  4. Excel Holiday Spreadsheet
    By mikef0x in forum Excel General
    Replies: 2
    Last Post: 03-28-2011, 12:07 PM
  5. [SOLVED] Holiday Planner show holiday taken?
    By Mac5 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-23-2006, 01:23 PM

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