Hi all
I have some data that ranges A28:J37. I don't always have all that range full.
Sometimes I will have A28:J30, sometimes A28:J34 and so on.
The column A will be filled with "" upto A37 when there are no data.
Now my requirement is I need a macro that copies only that range A28 to Jx where x is the last row that has some value other than "" in column A.
I just need to check column A not having "". And, I need that copied values to be pasted as values in another sheet.
for example,
column A
abc(A28)
def(A29)
ghi(A30)
""
""
""
""
and so on upto A37
Now, the macro should copy A28:J30 and paste as values in another sheet.
Next time, if A31 also has values other than "", then it should copy A28:J31 and paste as values in another sheet.
I can configure the destination sheet in the code.
Thank you.
I have some data that ranges A28:J37. I don't always have all that range full.
Sometimes I will have A28:J30, sometimes A28:J34 and so on.
The column A will be filled with "" upto A37 when there are no data.
Now my requirement is I need a macro that copies only that range A28 to Jx where x is the last row that has some value other than "" in column A.
I just need to check column A not having "". And, I need that copied values to be pasted as values in another sheet.
for example,
column A
abc(A28)
def(A29)
ghi(A30)
""
""
""
""
and so on upto A37
Now, the macro should copy A28:J30 and paste as values in another sheet.
Next time, if A31 also has values other than "", then it should copy A28:J31 and paste as values in another sheet.
I can configure the destination sheet in the code.
Thank you.