Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Highlight Row in Excel

Status
Not open for further replies.

isjason

Programmer
May 20, 2003
6
AU
I want to search through a range for the highest number, and then get it to change the font of that row. There may be multiple cells with the highest number so I want to highlight all of those rows.

Can anyone help?

Thanks

- jason
 
This works:

[tt]Dim r As Range
Set r = Rows(1)
Set r = Union(r, Rows(3))
r.Select
r.Font.Name = "Wingdings"[/tt]

however, it is not necessary to select range (r.select) to change font.

combo

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top