I have a workbook with 12 sheets named as January,February till December. In every sheet, I have the attendance of employees for each day of the month. Now the challenge is I want to compile the list in one worksheet which has name of employees in column A and in row I have dates from Jan 1 to dec 31.
Can I use a single Vlookup(), or Match() and Index() formula to get result? I have tried it and ended up with the formula:
=VLOOKUP($A:$A,'Jan '!A:AK,COLUMNS($B1:B1)+1,0)
However I want Sheet Name to be changed to Feb after 31 occurrence and so on, Also range of column $B1:B1 restarts from same after 31 occurrence.
I hope my query is clear. Please help.