Trying to change the formula in this excel sheet with calendar

RBLuckett01

New Member
Joined
Jul 27, 2023
Messages
9
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
  2. Web
I am trying to change the formula on the second row for the Employees to sum the actual leave taken for the month in column NJ and then total up for the year in column NK. But this formula and data need to change through each page. The sheet is hanged to a different month by the arrows at the top of the excel page.

Secondly, I would also like to change the color of the leave breakup to match the leave taken for that month. So, green is 0-71 hours used, yellow is 72-119 hours used, red is 120-100000 hours used. I already have column NJ and NK setup that way to change the colors but I would also like the the letters to change as well if possible.

EDIT:
=SUMPRODUCT((OFFSET($A8,0,31*($A$3-1)+1,1,31)<>"")*(IF(OFFSET($A8,0,31*($A$3-1)+1,1,31)=Sheet1!$B$29,0.5,IF(OFFSET($A8,0,31*($A$3-1)+1,1,31)=Sheet1!$B$30,0.5,1))*(OFFSET($A$4,0,31*($A$3-1)+1,1,31)))) Month formula

=SUMPRODUCT((OFFSET($A8,0,1,1,372)<>"")*(IF(OFFSET($A8,0,1,1,372)=Sheet1!$B$29,0.5,IF(OFFSET($A8,0,1,1,372)=Sheet1!$B$30,0.5,1))*(OFFSET($A$3,0,1,1,372)))) Year formula

It will not allow me to post my screen shots
 
Last edited by a moderator:

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
It is very hard to see what is happening with your worksheet and what the formulas are supposed to be doing. However, it looks to me like your use of the volatile function OFFSET is excessive and probably not needed at all or at least in a vastly reduced manner.

In words, what are the formulas in B3:NI3 supposed to be doing?
It is very hard to see what is happening with your worksheet and what the formulas are supposed to be doing. However, it looks to me like your use of the volatile function OFFSET is excessive and probably not needed at all or at least in a vastly reduced manner.

In words, what are the formulas in B3:NI3 supposed to be doing
Thank you for trying.
It is very hard to see what is happening with your worksheet and what the formulas are supposed to be doing. However, it looks to me like your use of the volatile function OFFSET is excessive and probably not needed at all or at least in a vastly reduced manner.

In words, what are the formulas in B3:NI3 supposed to be doing?
Peter,

This calendar was pulled from this site - Free Excel Leave Tracker Template (Updated for 2023) I just added information pertaining to my department and was trying to adjust some formulas but did not work. I am not sure what those formulas control but I do know if they are deleted it does create an error for the sheet. It states holiday in the formula so I am assuming the formulas control the holidays listed on the tab listed holidays.
 
Upvote 0
This calendar was pulled from this site
Thanks for that information. I think there are some poor formulas and design in that workbook but given its complexity and the fact that you can't help with explaining what certain formulas are doing, I am not prepared to spend the enormous amount of time that would be required to re-formulate it for a free public forum like this. Sorry.
 
Upvote 0
Thanks for that information. I think there are some poor formulas and design in that workbook but given its complexity and the fact that you can't help with explaining what certain formulas are doing, I am not prepared to spend the enormous amount of time that would be required to re-formulate it for a free public forum like this. Sorry.
Thank you for reviewing but I wasnt asking you or anyone else to reformulate the entire workbook and especially for FREE. Thank you again for reviewing and have a great day.
 
Upvote 0
Hello RBLuckett01

I first saw this scrolling calendar a couple years ago .
Since then have seen a few request for assistance with it on the different forums and always played with it each time.
Your post here, and Peter's take on the formulas inspired me to have another "kick at the cat" with what I've accumulated along the way.

If you're interested, here's what I've done

changed cell formats ;;; to general
removed formulas from rows 3-7
deleted the veryhidden sheet
created a user form to put real dates into rows 5 & 6 and Week # in row 7
row 1 is hidden and holds the info needed for the scrolling
the user form says data will be wiped out but the line of code that does that is commented out

formula now in NJ8 for 'this month' =SUMPRODUCT(($B8:$NI8<>"")*(MONTH($B$5:$NI$5)=$C$1))
formula now in NK8 for 'this year' =COUNTA($B8:$NI8)

I didn't touch any of the 449 conditional formatting rules on that sheet.
I suspect you might want to do a little clean-up with that.

Was fun playing with this, hope it is of some use.
Good luck with your project
NoSparks
 
Upvote 0
I wasnt asking you or anyone else to reformulate the entire workbook
Yes, I understand that. :biggrin:

I would like for the green rows to be automatically updated, if possible. I want to be able to create a formula that will calculate each leave code thats placed in cells starting at B8 through NI8 and the leave taken thats placed in cells B9 through NI9 to be totaled automatically under the correspondent leave code in cells NL9 though NU9.
Did you mean for the currently displayed month only?
Try this, in NL9 of a copy of your workbook, copied across. This formula row can then be copied to rows 11, 13, 15, ...
Excel Formula:
=SUMIFS($B9:$NI9,$B$6:$NI$6,"><",$B8:$NI8,NL$5)

or for the whole year?
Excel Formula:
=SUMIFS($B9:$NI9,$B8:$NI8,NL$5)
 
Upvote 0
Hello RBLuckett01

I first saw this scrolling calendar a couple years ago .
Since then have seen a few request for assistance with it on the different forums and always played with it each time.
Your post here, and Peter's take on the formulas inspired me to have another "kick at the cat" with what I've accumulated along the way.

If you're interested, here's what I've done

changed cell formats ;;; to general
removed formulas from rows 3-7
deleted the veryhidden sheet
created a user form to put real dates into rows 5 & 6 and Week # in row 7
row 1 is hidden and holds the info needed for the scrolling
the user form says data will be wiped out but the line of code that does that is commented out

formula now in NJ8 for 'this month' =SUMPRODUCT(($B8:$NI8<>"")*(MONTH($B$5:$NI$5)=$C$1))
formula now in NK8 for 'this year' =COUNTA($B8:$NI8)

I didn't touch any of the 449 conditional formatting rules on that sheet.
I suspect you might want to do a little clean-up with that.

Was fun playing with this, hope it is of some use.
Good luck with your project
NoSparks
Thank you so much
 
Upvote 0
Yes, I understand that. :biggrin:


Did you mean for the currently displayed month only?
Try this, in NL9 of a copy of your workbook, copied across. This formula row can then be copied to rows 11, 13, 15, ...
Excel Formula:
=SUMIFS($B9:$NI9,$B$6:$NI$6,"><",$B8:$NI8,NL$5)

or for the whole year?
Excel Formula:
=SUMIFS($B9:$NI9,$B8:$NI8,NL$5)
Thank you so much that worked. Exactly what I was looking for.
 
Upvote 0
@RBLuckett01
I notice that you had marked post #10 as the solution to this thread. Clearly it is not, so I have removed that mark. If one of the other posts does contain a solution for you then please mark that post, otherwise it is fine if no post is marked. This will help future readers who may be looking for a similar answer.
 
Upvote 0

Forum statistics

Threads
1,215,093
Messages
6,123,068
Members
449,091
Latest member
remmuS24

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top