J jsmithjames03 New Member Jan 18, 2024 #1 Hi, Please help me to solve the issue. I have an employee's weekly roster, and I need a simple report to find the week-off day based on the employee name. Attachments EMP Roster.xlsx EMP Roster.xlsx 9.7 KB · Views: 10
Hi, Please help me to solve the issue. I have an employee's weekly roster, and I need a simple report to find the week-off day based on the employee name.
Belleke Well-Known Member Jan 19, 2024 #2 Something like this? Attachments Index match transpose.xlsx Index match transpose.xlsx 17.8 KB · Views: 6
J jsmithjames03 New Member Jan 19, 2024 #3 Belleke said: Something like this? Click to expand... Thank you for your response. But sorry, my requirement is a little bit different like this: Emp NameWO 1WO 2KrishnaTueFriBiswarajMonThuAdityaWedThu Last edited: Jan 19, 2024
Belleke said: Something like this? Click to expand... Thank you for your response. But sorry, my requirement is a little bit different like this: Emp NameWO 1WO 2KrishnaTueFriBiswarajMonThuAdityaWedThu
p45cal Well-Known Member Jan 19, 2024 #5 Clear cells B15:C17, then in cell B15: Code: =FILTER($B$2:$F$2,INDEX($B$3:$F$5,MATCH(A15,$A$3:$A$5,0),)="WO","None") and copy down.
Clear cells B15:C17, then in cell B15: Code: =FILTER($B$2:$F$2,INDEX($B$3:$F$5,MATCH(A15,$A$3:$A$5,0),)="WO","None") and copy down.
J jsmithjames03 New Member Jan 22, 2024 #6 p45cal said: Clear cells B15:C17, then in cell B15: Code: =FILTER($B$2:$F$2,INDEX($B$3:$F$5,MATCH(A15,$A$3:$A$5,0),)="WO","None") and copy down. Click to expand... Excelent. Thank you.
p45cal said: Clear cells B15:C17, then in cell B15: Code: =FILTER($B$2:$F$2,INDEX($B$3:$F$5,MATCH(A15,$A$3:$A$5,0),)="WO","None") and copy down. Click to expand... Excelent. Thank you.