• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Scripting in Excel -> search different words in column and color them
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Scripting in Excel -> search different words in column and color them


  • Subject: Re: Scripting in Excel -> search different words in column and color them
  • From: Bjorn Van Blanckenberg <email@hidden>
  • Date: Thu, 24 Oct 2002 16:42:57 +0200

It works
Is it possible to alter it so if the currcell value is greater or smaller
then 56 and then do the same as text


--
Oooo.
oooO ( )
( ) ) /
\ ( (_/
\_)


Thanks
Bjorn Van Blanckenberg

> on Wed, 23 Oct 2002 16:12:35 +0200, Bjorn Van Blanckenberg <email@hidden>
> wrote:
>
>> I want to search in 5 columns the word "missing" or "FALSE" or "empty" and
>> if it is found color it red and set the font to bold
>>
>> Could somebody point me in the right direction
>
> This isn't particularly fast, but it does what you seem to be describing:
>
> ----------------------------------
> tell application "Microsoft Excel"
> Activate -- if required
> set searchRange to Range "C1:C5" -- or any required range
> repeat with findVal in {"missing", "FALSE", "empty"}
> repeat 1 times
> try
> set startCell to Find searchRange What findVal [NO BREAK]
> LookIn xlValues LookAt xlWhole with MatchCase
> on error number -1708 -- findVal not found
> exit repeat
> end try
> set currCell to startCell
> repeat
> set {currCell's Font's Bold, currCell's Font's ColorIndex, [NO BREAK]
> currCell} to {true, 3, FindNext searchRange after currCell}
> if currCell = startCell then exit repeat
> end repeat
> end repeat
> end repeat
> end tell
> ----------------------------------
>
> You may have to change the value of the variable 'ColorIndex' (set above as
> 3), depending on Excel's current color preferences.
>
> HTH
>
> Kai
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.

  • Follow-Ups:
    • RE: Scripting in Excel -> search different words in column and color them
      • From: Bjorn Van Blanckenberg <email@hidden>
References: 
 >Re: Scripting in Excel -> search different words in column and color them (From: Kai Edwards <email@hidden>)

  • Prev by Date: Re: Scripting Excel to go to the next row
  • Next by Date: RE: Scripting in Excel -> search different words in column and color them
  • Previous by thread: Re: Scripting in Excel -> search different words in column and color them
  • Next by thread: RE: Scripting in Excel -> search different words in column and color them
  • Index(es):
    • Date
    • Thread