calculating per quarter

B

bklex

I want my spreadsheet to calculate days per quarter, as in every quarter
employees are given 'x' days of vacation time. How do I do this?
 
W

Wigi

Hi

If you put the number of the quarter in cell A1 (so 1, 2, 3 or 4), and the
year in A2, then put in:

B1: =DATE(A2,(A1-1)*3+1,1) to get the begin date of the quarter
C1: =DATE(A2,A1*3,0) to get the ending date of the quarter
D1: =C1-B1 to get the number of days in between
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top