View Single Post
 
Old 09-14-2020, 11:00 PM
Purfleet Purfleet is offline Windows 10 Office 2019
Expert
 
Join Date: Jun 2020
Location: Essex
Posts: 345
Purfleet is a splendid one to beholdPurfleet is a splendid one to beholdPurfleet is a splendid one to beholdPurfleet is a splendid one to beholdPurfleet is a splendid one to beholdPurfleet is a splendid one to beholdPurfleet is a splendid one to behold
Default

Yes, if the columns are far apart its an issue i agree. I must admit i dont know an easy way of selected just the cells with nothing showing

Can do it with a few lines of VBA, maybe assigned to f12? but that might be overkill - it just selects at the monment but could be changed to copy

Sub selectnCopypop()

Dim r As String
Dim rRow As Integer

r = ActiveCell.Address

rRow = ActiveCell.Row

Do While ActiveCell.Offset(rRow, 0) <> ""
rRow = rRow + 1
Loop

Range(r).Resize(rRow, 1).Select

End Sub
Reply With Quote