Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need help with creating a function within excel worksheet. Which
will look for a keyword "Summary" and if it will find it then I would like to highlight the entire row with green color. Thank you |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub virina()
Set r = ActiveSheet.UsedRange For Each rr In r If InStr(rr.Value, "Summary") < 0 Then rr.EntireRow.Interior.ColorIndex = 10 End If Next End Sub -- Gary''s Student - gsnu200717 " wrote: I need help with creating a function within excel worksheet. Which will look for a keyword "Summary" and if it will find it then I would like to highlight the entire row with green color. Thank you |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
creating macros in excel | Excel Discussion (Misc queries) | |||
Creating add-ins from Excel 4 macros | Excel Programming | |||
creating excel macros | Excel Worksheet Functions | |||
Creating a .EXE to run excel macros | Excel Programming | |||
creating macros in excel | Excel Programming |