PC Review


Reply
Thread Tools Rate Thread

Creating macros in Excel

 
 
ZhenyaVirina@gmail.com
Guest
Posts: n/a
 
      26th Apr 2007
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 With Quote
 
 
 
 
=?Utf-8?B?R2FyeScncyBTdHVkZW50?=
Guest
Posts: n/a
 
      26th Apr 2007
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


"(E-Mail Removed)" 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 With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
EXCEL 2007 CREATING A MACROS FIEGEHENK Microsoft Excel New Users 2 30th Jun 2009 12:31 AM
creating macros in excel =?Utf-8?B?cnlhbnpvbzA2?= Microsoft Excel Misc 1 15th May 2007 07:43 PM
Creating add-ins from Excel 4 macros =?Utf-8?B?R3JhaGFt?= Microsoft Excel Programming 8 18th Jul 2006 06:02 PM
creating excel macros =?Utf-8?B?RGljaw==?= Microsoft Excel Worksheet Functions 0 2nd Jun 2006 06:56 PM
Creating a .EXE to run excel macros Hemanth Microsoft Excel Programming 4 6th Jan 2006 06:08 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:17 AM.