Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a bunch of dates in Column C, and then other dates in column J. How would I count the instances of dates in column C that fall in the same week number (and same year) as a date in a particular cell in column J?

Thanks for all help in advance

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
357 views
Welcome To Ask or Share your Answers For Others

1 Answer

Something like

=SUMPRODUCT(--(ISOWEEKNUM(J1)=ISOWEEKNUM($C$1:$C$10)),--(YEAR(J1)=YEAR($C$1:$C$10)))

Data

data


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...