Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / January 2005

Tip: Looking for answers? Try searching our database.

Finding text that's in italics

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
GretOgrady - 13 Jan 2005 13:54 GMT
I've got a column in my excel data that contains text whereby some of
the entries are in italics.  I'd like to somehow be able to isoloate
those items (via filtering or other means).

I'd be willing to insert a column so that if the cell to the left is
italics, a true response is indicated.
Anyone know of any tricks?

Thanks
Gord Dibben - 13 Jan 2005 17:12 GMT
Gret

A macro suit you?

Sub find_italics()
Dim rCell As Range
Set coltocheck = Application.InputBox(prompt:= _
           "Select A Column", Type:=8)
For Each rCell In coltocheck
       If rCell.Font.FontStyle = "Italic" Or _
       rCell.Font.FontStyle = "Bold Italic" Then
       rCell.Interior.ColorIndex = 3  'red
       End If
  Next rCell
End Sub

Gord Dibben Excel MVP

>I've got a column in my excel data that contains text whereby some of
>the entries are in italics.  I'd like to somehow be able to isoloate
[quoted text clipped - 5 lines]
>
>Thanks
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.