highlight a list

  • Thread starter Thread starter Papa Jonah
  • Start date Start date
P

Papa Jonah

I have a macro that does a nice job of sorting and such. I would like to add
to it a function that would be able to determine all of the rows that has a
date entered into column E - and then highlight the row.
As all all of the rows with a date are at the top of the spreadsheet after
performing the sort, I would hope this would be fairly easy - but not so easy
I have figured it out.

TIA,
Papa J
 
Is this helpful?

With Activesheet
LastRow = .Cells9.Rows.Count, "E").End(xlUp).Row
.Rows(1).Resize(LastRow).Select
End With

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Caution:
Bob struck the "9" key versus the "(" key on th first line).
 
Indeed I did, Thanks Jim.

--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top