Can anyone suggest a function or procedure to return a cell location based on these conditions in this type of worksheet?
Worksheet is
Project Status Date Date2 Date3...
CR0664 Complete 1 1
CR0664 Complete 1
CR0884 Cancelled 1
I'd like to determine the last cell by a given project that is populated. In this example I'd want to know the cell reference for CR0664 and Date 3 and the cell reference for CR0884 and Date
Ultimately what I want to do is color the last cell for a project in the date it was completed or cancelled (black for complete and red for cancelled). I think this would be easier for me if there weren't multiple lines for many projects.
I was thinking first filter on Completed projects then filter on each project. Define the last row and column. Then loop through each column by row looking for a value until it finds one. When it does mark it.
I'm having trouble implementing this however. if I could get a function that just gives me the cell reference by project then I'm pretty sure I can do the rest. (excel vba newbie). Any help is appreciated on this
Worksheet is
Project Status Date Date2 Date3...
CR0664 Complete 1 1
CR0664 Complete 1
CR0884 Cancelled 1
I'd like to determine the last cell by a given project that is populated. In this example I'd want to know the cell reference for CR0664 and Date 3 and the cell reference for CR0884 and Date
Ultimately what I want to do is color the last cell for a project in the date it was completed or cancelled (black for complete and red for cancelled). I think this would be easier for me if there weren't multiple lines for many projects.
I was thinking first filter on Completed projects then filter on each project. Define the last row and column. Then loop through each column by row looking for a value until it finds one. When it does mark it.
I'm having trouble implementing this however. if I could get a function that just gives me the cell reference by project then I'm pretty sure I can do the rest. (excel vba newbie). Any help is appreciated on this