Hello,
I've been using the following formula for months now without problem (or so I thought) & it worked in the month of August (which had Five Fridays in the month), but for some reason it is not calculating properly for September.
Formula:
I5=9/7/2018
I8="N"
E2="N"
D2=$114.88
The cell should result in displaying, as of today, $57.44. The reason is that every Friday the system should calculate how much money to set aside until it reaches the last Friday in the month, which will show the same amount in D2. August had 5 Fridays so the deduction was less for each Friday. Other months worked fine that contained 4 and 5 Fridays. Not sure why September is not working correctly. Currently displays $86.16.
TIA,
Jay
I've been using the following formula for months now without problem (or so I thought) & it worked in the month of August (which had Five Fridays in the month), but for some reason it is not calculating properly for September.
Formula:
Code:
=IF($I$8="Y",0,IF(E2="N",($D2/(INT((DAY(DATE(YEAR($I$5),MONTH($I$5)+1,1)-WEEKDAY(DATE(YEAR($I$5),MONTH($I$5)+1,2)))+6)/7)))*NETWORKDAYS.INTL(DATE(YEAR(TODAY()),MONTH(TODAY()),1),TODAY()+1,"1111101"),$D2))
I5=9/7/2018
I8="N"
E2="N"
D2=$114.88
The cell should result in displaying, as of today, $57.44. The reason is that every Friday the system should calculate how much money to set aside until it reaches the last Friday in the month, which will show the same amount in D2. August had 5 Fridays so the deduction was less for each Friday. Other months worked fine that contained 4 and 5 Fridays. Not sure why September is not working correctly. Currently displays $86.16.
TIA,
Jay
Last edited: