x = the number of the column you are concerned with (column "A" = 1
column "B" = 2 etc.)
last = Worksheets("Sheet1").UsedRange.Row - 1
Worksheets("Sheet1").UsedRange.Rows.Count
Do Until Worksheets("Sheet1").Cells(last, x).Value <> ""
last = last - 1
Loo