Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 19
Default Color alternate Entire row dependant on value in "A"

Hi, i have document numbers in column "A", all like numbers must be the
same color e.g.

rows 1, 2, 3, 4 white then 5 grey, 6 white, 7 & 8 grey etc..

I would like to do this with code as the length of data is variable and
automatically created..


1.A03697 1712 7531581 ASSY HSE BTW RADIATOR RETURN & THERM/HSG
2.A03697 1362 1433077 TEMPERATURE SENSOR WATER, CLIPSE ATTACHM
3.A03697 6111 6938076 MDL TEMP SENSOR E9X N46+NG6/N52
4.A03697 1713 7543026 AY COOLANT EXPANSION TANK L2 SP-IG.ENGIN
5.A04933 3610 6775592 STEEL WHEEL 7JX16 EH2 IS34 STYL 12)
6.A07050 5175 7128503 SEAL RADIATOR
7.A07110 2120 9901023 PAN SCREW M8X16-8.8-ZNS
8.A07110 2151 1203012 KNURLED-HEAD BOLT
A07346 5121 7059891 LU UNIFORM LOCK SYSTEM LHD
A07346 6612 6937508 ADAPTER PURSE KEY PL2
A07346 5116 7075474 ASSY GLOVE BOX CPL A COL
A07684 6113 9129853
A07904 3452 6767984 PIPE CLIP ABS PAD WEAR IND. CABLE

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,290
Default Color alternate Entire row dependant on value in "A"

The free Excel add-in "Shade Data Rows" will shade by cell value.
It shades the selection or across entire sheet.
It will also shade by every nth row or every group of n rows.
Choice of any color.
Download from ... http://www.realezsites.com/bus/primitivesoftware
No registration required.
--
Jim Cone
San Francisco, USA


"Les" wrote in message ups.com...
Hi, i have document numbers in column "A", all like numbers must be the
same color e.g.
rows 1, 2, 3, 4 white then 5 grey, 6 white, 7 & 8 grey etc..
I would like to do this with code as the length of data is variable and
automatically created..

1.A03697 1712 7531581 ASSY HSE BTW RADIATOR RETURN & THERM/HSG
2.A03697 1362 1433077 TEMPERATURE SENSOR WATER, CLIPSE ATTACHM
3.A03697 6111 6938076 MDL TEMP SENSOR E9X N46+NG6/N52
4.A03697 1713 7543026 AY COOLANT EXPANSION TANK L2 SP-IG.ENGIN
5.A04933 3610 6775592 STEEL WHEEL 7JX16 EH2 IS34 STYL 12)
6.A07050 5175 7128503 SEAL RADIATOR
7.A07110 2120 9901023 PAN SCREW M8X16-8.8-ZNS
8.A07110 2151 1203012 KNURLED-HEAD BOLT
A07346 5121 7059891 LU UNIFORM LOCK SYSTEM LHD
A07346 6612 6937508 ADAPTER PURSE KEY PL2
A07346 5116 7075474 ASSY GLOVE BOX CPL A COL
A07684 6113 9129853
A07904 3452 6767984 PIPE CLIP ABS PAD WEAR IND. CABLE

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 19
Default Color alternate Entire row dependant on value in "A"

Thanks for that Jim, but not what i am looking for. I need it in code


Jim Cone wrote:
The free Excel add-in "Shade Data Rows" will shade by cell value.
It shades the selection or across entire sheet.
It will also shade by every nth row or every group of n rows.
Choice of any color.
Download from ... http://www.realezsites.com/bus/primitivesoftware
No registration required.
--
Jim Cone
San Francisco, USA


"Les" wrote in message ups.com...
Hi, i have document numbers in column "A", all like numbers must be the
same color e.g.
rows 1, 2, 3, 4 white then 5 grey, 6 white, 7 & 8 grey etc..
I would like to do this with code as the length of data is variable and
automatically created..

1.A03697 1712 7531581 ASSY HSE BTW RADIATOR RETURN & THERM/HSG
2.A03697 1362 1433077 TEMPERATURE SENSOR WATER, CLIPSE ATTACHM
3.A03697 6111 6938076 MDL TEMP SENSOR E9X N46+NG6/N52
4.A03697 1713 7543026 AY COOLANT EXPANSION TANK L2 SP-IG.ENGIN
5.A04933 3610 6775592 STEEL WHEEL 7JX16 EH2 IS34 STYL 12)
6.A07050 5175 7128503 SEAL RADIATOR
7.A07110 2120 9901023 PAN SCREW M8X16-8.8-ZNS
8.A07110 2151 1203012 KNURLED-HEAD BOLT
A07346 5121 7059891 LU UNIFORM LOCK SYSTEM LHD
A07346 6612 6937508 ADAPTER PURSE KEY PL2
A07346 5116 7075474 ASSY GLOVE BOX CPL A COL
A07684 6113 9129853
A07904 3452 6767984 PIPE CLIP ABS PAD WEAR IND. CABLE


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 396
Default Color alternate Entire row dependant on value in "A"

I have found the following code on goggle which changes every alternate
row color. Can somebody help me change it to my requirements ??

Les Stout

*** Sent via Developersdex http://www.developersdex.com ***
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 396
Default Color alternate Entire row dependant on value in "A"

Sub test()
Dim rngToColour As Range
Dim varLastValue As Variant
Dim intColour1 As Integer
Dim intColour2 As Integer
Dim intCurrentColour As Integer
Dim LstRow As Long
intColour1 = 2
intColour2 = 3
intCurrentColour = intColour1
LstRow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row
Set rngToColour = Sheet1.Range("A2:P" & LstRow)
varLastValue = rngToColour.Value(1, 1)
Do While rngToColour.Value("A2:P" & LstRow) < ""
rngToColour.Interior.ColorIndex = intCurrentColour
If rngToColour.Value("A2:P" & LstRow) < varLastValue Then
If intCurrentColour = intColour1 Then
intCurrentColour = intColour2
Else
intCurrentColour = intColour1
End If
varLastValue = rngToColour.Value(1, 1)
End If
Set rngToColour = rngToColour.Offset(1, 0)
Loop
End Sub

Les Stout

*** Sent via Developersdex http://www.developersdex.com ***


  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Color alternate Entire row dependant on value in "A"

The xlsweetspot guy says: "Here are some codes that should work without
modification. You just have to decide what column/cell should be used
as the starting point. The code will do the rest."

Sub ColorWhenValueChange()
'The xlsweetspot guy would would do it this way.
Dim strActiveAddress As String 'Use this to track single cell position
ActiveCell.Offset(1, 0).Select
Do While Len(ActiveCell.Value) < 0 ' This will run until a row is
blank.
strActiveAddress = ActiveCell.Address
' Compare the values in the current cell with the one above
If ActiveCell.Value = ActiveCell.Offset(-1, 0).Value Then
ActiveCell.EntireRow.Offset(-1, 0).Copy
ActiveCell.EntireRow.PasteSpecial xlPasteFormats
Else
If ActiveCell.Offset(-1, 0).Interior.ColorIndex = xlNone Then
ActiveCell.EntireRow.Select
Selection.Interior.ColorIndex = 15
Else
ActiveCell.EntireRow.Select
Selection.Interior.ColorIndex = xlNone
End If
End If
Range(strActiveAddress).Select
ActiveCell.Offset(1, 0).Select
Loop
End Sub

There is also a row coloring product at xlsweetspot.com that might
solve some concerns.

Good Luck,


  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 396
Default Color alternate Entire row dependant on value in "A"

Sweet, thanks a lot works great, just did a small modification.

If ActiveCell.Offset(-1, 0).Interior.ColorIndex = xlNone Then
ActiveCell.EntireRow.Interior.ColorIndex = 15
Else
ActiveCell.EntireRow.Interior.ColorIndex = xlNone
End If


Les Stout

*** Sent via Developersdex http://www.developersdex.com ***
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
Shading alternate "groups" of rows? Lee Harris Excel Worksheet Functions 6 September 17th 06 03:43 PM
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next BCB New Users to Excel 7 May 13th 06 10:02 PM
Any IF(A2=font color=red", "1", "0") in excel? Or a way to do it? Steve Excel Discussion (Misc queries) 1 November 7th 05 02:48 PM
set "value if true" to "fill cell with color" Feeta Excel Programming 4 July 23rd 05 08:16 AM


All times are GMT +1. The time now is 07:31 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"