Thread: Find ColorIndex
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
rickey24[_13_] rickey24[_13_] is offline
external usenet poster
 
Posts: 1
Default Find ColorIndex

Hi all

I am trying to use the value in Cell D2 on sheet sht, then find th
cell where that value is on sheet sTL, take the interior colorindex o
that cell and apply it to some formatting on a sheet that I am adding.

Dim Cind as Long
Dim LookRng as Range, FndRng as Range
Dim Stl as Worksheet 'sheet 1
Dim sht as worksheet 'sheet 2

Set LookRng = sTL.Range("b4", sTL.Range("b"
sTL.Rows.Count).End(xlUp))
Set FndRng = LookRng.Find(sht.Range("D2").Value)
Cind = FndRng.Offset(0, 1).Interior.ColorIndex
...
Selection.Interior.ColorIndex = cind

I may be going about this all the wrong way, but I am getting an erro
(91) on the cind = line.

Any help would be greatly appreciated. Thanks.
R

--
Message posted from http://www.ExcelForum.com