I am currently creating a reporting sheet for equipment for our company. This sheet will grab data from multiple Excel sheets and populate it based on our custom report template. So far I have managed to find on how to merge multiple sheets and find the column header. But now I'm stucked on how to find the last non empty value based on column header.
Attached in the picture above is the sample data. As you can see, the last non empty cell in each row is the average of the row. What I am trying to do is to find the header column(eg SVC525) and take the last non empty value of the column, which is average.
Cells(Rows.Count, x).End (xlUp)
. You should watch Excel VBA Introduction Part 5 - Selecting Cells (Range, Cells, Activecell, End, Offset) by WiseOwlTutorials – user6432984