Hi ALL!!
I have voyage data for few ships telling me how the ships performed in each voyage.The database is divided into two halves in the same worksheet i.e when the ship is empty and when the ship is full.
Although I am able to extract the whole data but i want only specific data, lets say when the ship was full(carrying cargo). Once i have the rows that tell me when the ship was full, i want to transfer the data to another excel sheet and compile data for each vessel, in each condition(full/empty).
Like i said, with the above command I get the data for the whole sheet but i want data only when the ship is full/empty.
Any kind of help on this would be much appreciated.
I have voyage data for few ships telling me how the ships performed in each voyage.The database is divided into two halves in the same worksheet i.e when the ship is empty and when the ship is full.
Although I am able to extract the whole data but i want only specific data, lets say when the ship was full(carrying cargo). Once i have the rows that tell me when the ship was full, i want to transfer the data to another excel sheet and compile data for each vessel, in each condition(full/empty).
Code:
DestLastRow = ThisWorkbook.Sheets("Sheet1").Cells(ThisWorkbook.Sheets("Sheet1").Rows.Count, "A").End(xlUp).Offset(1).Row
Like i said, with the above command I get the data for the whole sheet but i want data only when the ship is full/empty.
Any kind of help on this would be much appreciated.