• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

need help to formulate an excel formula to share the required output

Formula based solution in column M, N and O. In principle, logic required is around generating a repeat number 7 times and then subtracting sequentially to show the dates in the week.

Note: This is fairly old approach. There may be nifty O365 functions which can do this in a shorter way.
 

Attachments

Another old function approach.

[M3]: =INDEX(B$3:B$13,INT((ROW(A1)-1)/7)+1)

[N3]: =IF(M3="","",ROW(A1)+1) --> custom formula as "d-mmm"

[O3]: =IF(M3="","",IF(M3<>M2,VLOOKUP(M3,B$3:C$13,2,0),0))

83885
 

Attachments

Back
Top