Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Respected Sir
I want to calculate Sundays between a earlier specific date & today () Plz gide me about the Function releted wit above work. thank you Zahid Khan |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:-
=SUM(IF(WEEKDAY(A1-1+ROW(INDIRECT("1:"&TRUNC(B1-A1)+1)))=1,1,0)) Start date in A1, End date in A2. This is an array formula so enter it with CTRL+Shift+Enter. Will that do? Mike "Zahid Khan" wrote: Respected Sir I want to calculate Sundays between a earlier specific date & today () Plz gide me about the Function releted wit above work. thank you Zahid Khan |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Good (array entered):
=SUM(IF(WEEKDAY(A1-1+ROW(INDIRECT("1:"&TRUNC(TODAY()-A1)+1)))=1,1,0)) Better (normally entered): =SUMPRODUCT(--(WEEKDAY(ROW(INDIRECT(A1&":"&TODAY())),2)=n)) Best (normally entered): =INT((WEEKDAY(A1-n,2)+TODAY()-A1)/7) Where n = day of week: Monday = 1 ...... Sunday = 7 Biff "Mike" wrote in message ... Try this:- =SUM(IF(WEEKDAY(A1-1+ROW(INDIRECT("1:"&TRUNC(B1-A1)+1)))=1,1,0)) Start date in A1, End date in A2. This is an array formula so enter it with CTRL+Shift+Enter. Will that do? Mike "Zahid Khan" wrote: Respected Sir I want to calculate Sundays between a earlier specific date & today () Plz gide me about the Function releted wit above work. thank you Zahid Khan |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
CALCULATE NUMBER OF DAYS BETWEEN A DATE AND TODAY | Excel Worksheet Functions | |||
Calculate the number of Saturdays or Sundays between 2 dates? | Excel Discussion (Misc queries) | |||
calculate how many sundays between two dates in excel | Excel Discussion (Misc queries) | |||
calculate how many sundays between two dates in excel | Excel Discussion (Misc queries) | |||
how to calculate a date .. say 34 days from today | Excel Discussion (Misc queries) |