I'm trying to calculate the average number of cell phone minutes I can use every day during my billing cycle.
F3 is today's date, C3 is the end of the billing cycle.
My current formula is as follows:
IF(F3<C3,NETWORKDAYS(F3,EOMONTH(F3,0)+19),NETWORKDAYS(F3,EOMONTH(F3,-1)+19))
Right now I can't find a way to create an IF function where it would switch from EOMONTH(F3,0)+19 to EOMONTH(F3,-1)+19 as it goes to the new month.
Is there a way to do this?
F3 is today's date, C3 is the end of the billing cycle.
My current formula is as follows:
IF(F3<C3,NETWORKDAYS(F3,EOMONTH(F3,0)+19),NETWORKDAYS(F3,EOMONTH(F3,-1)+19))
Right now I can't find a way to create an IF function where it would switch from EOMONTH(F3,0)+19 to EOMONTH(F3,-1)+19 as it goes to the new month.
Is there a way to do this?