• 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

Hi EXcel Champs ,
Please help me to formulate an excel formula to show the unique data as per attached file ..
kinldy help
 

Attachments

  • uniqueformula.xlsx
    20.6 KB · Views: 5
Power Query solution at cell E2. Update the data in the left table, then refresh the result table by right-clicking it and choosing Refresh.
 

Attachments

  • Chandoo52637uniqueformula.xlsx
    30.8 KB · Views: 1
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

  • uniqueformula.xlsx
    22.9 KB · Views: 2
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

  • uniqueformula BY.xlsx
    23.7 KB · Views: 2
Back
Top