Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default macro - copy all rows with colorindex 36

Hello All,
Totally new to excel macros and wondered if I could get some guidance.

I have a series of worksheets - one main and several that will be
populated from that sheet.

When certain records meet criteria, I use light yellow as a
highlighter for the background.....I need to be able to collect all
the highlighted records from sheet - 1st Assn to sheet - Failures.

I have the following macro recorded but it takes all the records not
the yellow ones (I set the format in Edit -Find-Options etc set the
color etc.


Application.FindFormat.Clear
With Application.FindFormat.Interior
.ColorIndex = 36
End With
Range("C13:D248").Select
Selection.Copy
Sheets("Failures").Select
Range("C13:D248").Select
ActiveSheet.Paste


I have searched the groups for similar solutions and tried without
success.

Any help would be appreciated.

John

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,986
Default macro - copy all rows with colorindex 36

Looking in the Object Browser, I find that the Interior property is a member
of FormatConditions and CellFormat, but not FindFormat. You also need to
know how the color was assigned to the cell, whether

Range(myRangeVar).Interior.ColorIndex = SomeNumber

Or

Range(myRangeVar).FormatConditions.Interior.ColorI ndex = SomeNumber

These are two different levels of applying the color to a cell, but they
look the same to the casual observer.
"flymo" wrote:

Hello All,
Totally new to excel macros and wondered if I could get some guidance.

I have a series of worksheets - one main and several that will be
populated from that sheet.

When certain records meet criteria, I use light yellow as a
highlighter for the background.....I need to be able to collect all
the highlighted records from sheet - 1st Assn to sheet - Failures.

I have the following macro recorded but it takes all the records not
the yellow ones (I set the format in Edit -Find-Options etc set the
color etc.


Application.FindFormat.Clear
With Application.FindFormat.Interior
.ColorIndex = 36
End With
Range("C13:D248").Select
Selection.Copy
Sheets("Failures").Select
Range("C13:D248").Select
ActiveSheet.Paste


I have searched the groups for similar solutions and tried without
success.

Any help would be appreciated.

John


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,355
Default macro - copy all rows with colorindex 36

I'll give you a snippet of code and you can modify to suit.

Sub CopyYellow()
Dim myRange As Range
Dim myCopyRange As Range
Dim r As Range
Dim sht As Worksheet

Set sht = Worksheets("Failures")
Set myRange = Range("C13:D248")
For Each r In myRange
If r.Interior.ColorIndex = 36 Then
If Not IsEmpty(r) Then
Debug.Print r.Address,
Debug.Print r.Text,
Debug.Print r.Value
sht.Range(r.Address).Value = r.Value
Debug.Print r.Address
End If
End If
Next r

End Sub

HTH,
Barb Reinhardt


"flymo" wrote:

Hello All,
Totally new to excel macros and wondered if I could get some guidance.

I have a series of worksheets - one main and several that will be
populated from that sheet.

When certain records meet criteria, I use light yellow as a
highlighter for the background.....I need to be able to collect all
the highlighted records from sheet - 1st Assn to sheet - Failures.

I have the following macro recorded but it takes all the records not
the yellow ones (I set the format in Edit -Find-Options etc set the
color etc.


Application.FindFormat.Clear
With Application.FindFormat.Interior
.ColorIndex = 36
End With
Range("C13:D248").Select
Selection.Copy
Sheets("Failures").Select
Range("C13:D248").Select
ActiveSheet.Paste


I have searched the groups for similar solutions and tried without
success.

Any help would be appreciated.

John


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default macro - copy all rows with colorindex 36

Hi,

You may use AutoFilter to hide records that doesn't match your criterias
then SpecialCells to copy.

Sub FilterThenCopy()
Dim MyData As Range
Set MyData = Range("A1:F1000") 'Your data
With MyData
.AutoFilter Field:=1, Criteria1:="0"'Use criteria 0 on field 1
.SpecialCells(xlCellTypeVisible).Copy 'Copy all records where field1
0

End With
Sheets("Failures").Activate
ActiveSheet.Paste
MyData.AutoFilter 'Remove Autofilter
End Sub

Regards,

Manu/

"flymo" a écrit dans le message de news:
...
Hello All,
Totally new to excel macros and wondered if I could get some guidance.

I have a series of worksheets - one main and several that will be
populated from that sheet.

When certain records meet criteria, I use light yellow as a
highlighter for the background.....I need to be able to collect all
the highlighted records from sheet - 1st Assn to sheet - Failures.

I have the following macro recorded but it takes all the records not
the yellow ones (I set the format in Edit -Find-Options etc set the
color etc.


Application.FindFormat.Clear
With Application.FindFormat.Interior
.ColorIndex = 36
End With
Range("C13:D248").Select
Selection.Copy
Sheets("Failures").Select
Range("C13:D248").Select
ActiveSheet.Paste


I have searched the groups for similar solutions and tried without
success.

Any help would be appreciated.

John



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default macro - copy all rows with colorindex 36

Hello,
Thanks for the response.

I've tried to adjust the code without success ( the FormatConditions
cuases an error)

The format is being applied to a range of cells by a userfrom the Fill
Color menu (selecting light yellow) - is this the choice in using the
first or second option?

I may be missing your point - apologies

John


On Jun 4, 8:36 pm, JLGWhiz wrote:
Looking in the Object Browser, I find that the Interior property is a member
of FormatConditions and CellFormat, but not FindFormat. You also need to
know how the color was assigned to the cell, whether

Range(myRangeVar).Interior.ColorIndex = SomeNumber

Or

Range(myRangeVar).FormatConditions.Interior.ColorI ndex = SomeNumber

These are two different levels of applying the color to a cell, but they
look the same to the casual observer.

"flymo" wrote:
Hello All,
Totally new to excel macros and wondered if I could get some guidance.


I have a series of worksheets - one main and several that will be
populated from that sheet.


When certain records meet criteria, I use light yellow as a
highlighter for the background.....I need to be able to collect all
the highlighted records from sheet - 1st Assn to sheet - Failures.


I have the following macro recorded but it takes all the records not
the yellow ones (I set the format in Edit -Find-Options etc set the
color etc.


Application.FindFormat.Clear
With Application.FindFormat.Interior
.ColorIndex = 36
End With
Range("C13:D248").Select
Selection.Copy
Sheets("Failures").Select
Range("C13:D248").Select
ActiveSheet.Paste


I have searched the groups for similar solutions and tried without
success.


Any help would be appreciated.


John





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default macro - copy all rows with colorindex 36

Hello Barb,
Many thanks that is so close to what I need.

Sub CopyYellow()
Dim myRange As Range
Dim myCopyRange As Range
Dim r As Range
Dim sht As Worksheet

Set sht = Worksheets("Failures")
Set myRange = Range("C13:D248")
For Each r In myRange
If r.Interior.ColorIndex = 36 Then
If Not IsEmpty(r) Then
Debug.Print r.Address,
Debug.Print r.Text,
Debug.Print r.Value
sht.Range(r.Address).Value = r.Value
Debug.Print r.Address
End If
End If
Next r

End Sub


I've ran a few times and would ask two questions - what would I need
to add to the code to remove any spaces (non-yellow rows) on the
target worksheet and how do I carry over the color?
Thanks Again

Best regards
John


On Jun 4, 9:05 pm, flymo wrote:
Hello,
Thanks for the response.

I've tried to adjust the code without success ( the FormatConditions
cuases an error)

The format is being applied to a range of cells by a userfrom the Fill
Color menu (selecting light yellow) - is this the choice in using the
first or second option?

I may be missing your point - apologies

John

On Jun 4, 8:36 pm, JLGWhiz wrote:

Looking in the Object Browser, I find that the Interior property is a member
of FormatConditions and CellFormat, but not FindFormat. You also need to
know how the color was assigned to the cell, whether


Range(myRangeVar).Interior.ColorIndex = SomeNumber


Or


Range(myRangeVar).FormatConditions.Interior.ColorI ndex = SomeNumber


These are two different levels of applying the color to a cell, but they
look the same to the casual observer.


"flymo" wrote:
Hello All,
Totally new to excel macros and wondered if I could get some guidance.


I have a series of worksheets - one main and several that will be
populated from that sheet.


When certain records meet criteria, I use light yellow as a
highlighter for the background.....I need to be able to collect all
the highlighted records from sheet - 1st Assn to sheet - Failures.


I have the following macro recorded but it takes all the records not
the yellow ones (I set the format in Edit -Find-Options etc set the
color etc.


Application.FindFormat.Clear
With Application.FindFormat.Interior
.ColorIndex = 36
End With
Range("C13:D248").Select
Selection.Copy
Sheets("Failures").Select
Range("C13:D248").Select
ActiveSheet.Paste


I have searched the groups for similar solutions and tried without
success.


Any help would be appreciated.


John



  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default macro - copy all rows with colorindex 36


Hi flymo

Check out EasyFilter
http://www.rondebruin.nl/easyfilter.htm

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"flymo" wrote in message oups.com...
Hello All,
Totally new to excel macros and wondered if I could get some guidance.

I have a series of worksheets - one main and several that will be
populated from that sheet.

When certain records meet criteria, I use light yellow as a
highlighter for the background.....I need to be able to collect all
the highlighted records from sheet - 1st Assn to sheet - Failures.

I have the following macro recorded but it takes all the records not
the yellow ones (I set the format in Edit -Find-Options etc set the
color etc.


Application.FindFormat.Clear
With Application.FindFormat.Interior
.ColorIndex = 36
End With
Range("C13:D248").Select
Selection.Copy
Sheets("Failures").Select
Range("C13:D248").Select
ActiveSheet.Paste


I have searched the groups for similar solutions and tried without
success.

Any help would be appreciated.

John

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default macro - copy all rows with colorindex 36

Thanks Ron,

I'll check it out.

Appreciated

John


On Jun 4, 11:20 pm, "Ron de Bruin" wrote:
Hi flymo

Check out EasyFilterhttp://www.rondebruin.nl/easyfilter.htm

--

Regards Ron de Bruinhttp://www.rondebruin.nl/tips.htm

"flymo" wrote in ooglegroups.com...
Hello All,
Totally new to excel macros and wondered if I could get some guidance.


I have a series of worksheets - one main and several that will be
populated from that sheet.


When certain records meet criteria, I use light yellow as a
highlighter for the background.....I need to be able to collect all
the highlighted records from sheet - 1st Assn to sheet - Failures.


I have the following macro recorded but it takes all the records not
the yellow ones (I set the format in Edit -Find-Options etc set the
color etc.


Application.FindFormat.Clear
With Application.FindFormat.Interior
.ColorIndex = 36
End With
Range("C13:D248").Select
Selection.Copy
Sheets("Failures").Select
Range("C13:D248").Select
ActiveSheet.Paste


I have searched the groups for similar solutions and tried without
success.


Any help would be appreciated.


John



  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default macro - copy all rows with colorindex 36

Hello Folks,
I have been trying to manipulate the following (excellent) code from
Barb without success.
The code does move the rows hightlighting with colorindex 36 to the
new worksheet, however, I need to remove the spaces (there may be
hundreds of records with only some highlighted) between records on the
new worksheet.
Having the color copy too would be great.

Sub CopyYellow()
Dim myRange As Range
Dim myCopyRange As Range
Dim r As Range
Dim sht As Worksheet

Set sht = Worksheets("Failures")
Set myRange = Range("C13:D248")
For Each r In myRange
If r.Interior.ColorIndex = 36 Then
If Not IsEmpty(r) Then
Debug.Print r.Address,
Debug.Print r.Text,
Debug.Print r.Value
sht.Range(r.Address).Value = r.Value
Debug.Print r.Address
End If
End If
Next r

End Sub

I would really appreciate any help as I'm at a loss(and new to excel
vba/macros) I need to get a good reference manual for this!

many thanks
John


Ron, I tried the EasyFilter and may not have using correctly -
couldn't get it to do what I needed (excellent tool tho')


On Jun 5, 7:02 am, flymo wrote:
Thanks Ron,

I'll check it out.

Appreciated

John

On Jun 4, 11:20 pm, "Ron de Bruin" wrote:

Hi flymo


Check out EasyFilterhttp://www.rondebruin.nl/easyfilter.htm


--


Regards Ron de Bruinhttp://www.rondebruin.nl/tips.htm


"flymo" wrote in ooglegroups.com...
Hello All,
Totally new to excel macros and wondered if I could get some guidance.


I have a series of worksheets - one main and several that will be
populated from that sheet.


When certain records meet criteria, I use light yellow as a
highlighter for the background.....I need to be able to collect all
the highlighted records from sheet - 1st Assn to sheet - Failures.


I have the following macro recorded but it takes all the records not
the yellow ones (I set the format in Edit -Find-Options etc set the
color etc.


Application.FindFormat.Clear
With Application.FindFormat.Interior
.ColorIndex=36
End With
Range("C13:D248").Select
Selection.Copy
Sheets("Failures").Select
Range("C13:D248").Select
ActiveSheet.Paste


I have searched the groups for similar solutions and tried without
success.


Any help would be appreciated.


John



  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default macro - copy all rows with colorindex 36


You can filter on a color in a column and choose the option to copy to a new sheet.
did you try that ?


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"flymo" wrote in message oups.com...
Hello Folks,
I have been trying to manipulate the following (excellent) code from
Barb without success.
The code does move the rows hightlighting with colorindex 36 to the
new worksheet, however, I need to remove the spaces (there may be
hundreds of records with only some highlighted) between records on the
new worksheet.
Having the color copy too would be great.

Sub CopyYellow()
Dim myRange As Range
Dim myCopyRange As Range
Dim r As Range
Dim sht As Worksheet

Set sht = Worksheets("Failures")
Set myRange = Range("C13:D248")
For Each r In myRange
If r.Interior.ColorIndex = 36 Then
If Not IsEmpty(r) Then
Debug.Print r.Address,
Debug.Print r.Text,
Debug.Print r.Value
sht.Range(r.Address).Value = r.Value
Debug.Print r.Address
End If
End If
Next r

End Sub

I would really appreciate any help as I'm at a loss(and new to excel
vba/macros) I need to get a good reference manual for this!

many thanks
John


Ron, I tried the EasyFilter and may not have using correctly -
couldn't get it to do what I needed (excellent tool tho')


On Jun 5, 7:02 am, flymo wrote:
Thanks Ron,

I'll check it out.

Appreciated

John

On Jun 4, 11:20 pm, "Ron de Bruin" wrote:

Hi flymo


Check out EasyFilterhttp://www.rondebruin.nl/easyfilter.htm


--


Regards Ron de Bruinhttp://www.rondebruin.nl/tips.htm


"flymo" wrote in ooglegroups.com...
Hello All,
Totally new to excel macros and wondered if I could get some guidance.


I have a series of worksheets - one main and several that will be
populated from that sheet.


When certain records meet criteria, I use light yellow as a
highlighter for the background.....I need to be able to collect all
the highlighted records from sheet - 1st Assn to sheet - Failures.


I have the following macro recorded but it takes all the records not
the yellow ones (I set the format in Edit -Find-Options etc set the
color etc.


Application.FindFormat.Clear
With Application.FindFormat.Interior
.ColorIndex=36
End With
Range("C13:D248").Select
Selection.Copy
Sheets("Failures").Select
Range("C13:D248").Select
ActiveSheet.Paste


I have searched the groups for similar solutions and tried without
success.


Any help would be appreciated.


John





  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default macro - copy all rows with colorindex 36

Hello Ron,
Yes, I tried that option and couldn't get it to work properly - I need
to add to a sheet within the current workbook. So while it did filter
and place the data in a new sheet, I didn't know how to get it to
apply to the one I needed.

Best regards
John

On Jun 6, 3:50 pm, "Ron de Bruin" wrote:
You can filter on a color in a column and choose the option to copy to a new sheet.
did you try that ?

--

Regards Ron de Bruinhttp://www.rondebruin.nl/tips.htm

"flymo" wrote in ooglegroups.com...
Hello Folks,
I have been trying to manipulate the following (excellent) code from
Barb without success.
The code does move the rows hightlighting with colorindex 36 to the
new worksheet, however, I need to remove the spaces (there may be
hundreds of records with only some highlighted) between records on the
new worksheet.
Having the color copy too would be great.


Sub CopyYellow()
Dim myRange As Range
Dim myCopyRange As Range
Dim r As Range
Dim sht As Worksheet


Set sht = Worksheets("Failures")
Set myRange = Range("C13:D248")
For Each r In myRange
If r.Interior.ColorIndex = 36 Then
If Not IsEmpty(r) Then
Debug.Print r.Address,
Debug.Print r.Text,
Debug.Print r.Value
sht.Range(r.Address).Value = r.Value
Debug.Print r.Address
End If
End If
Next r


End Sub


I would really appreciate any help as I'm at a loss(and new to excel
vba/macros) I need to get a good reference manual for this!


many thanks
John


Ron, I tried the EasyFilter and may not have using correctly -
couldn't get it to do what I needed (excellent tool tho')


On Jun 5, 7:02 am, flymo wrote:
Thanks Ron,


I'll check it out.


Appreciated


John


On Jun 4, 11:20 pm, "Ron de Bruin" wrote:


Hi flymo


Check out EasyFilterhttp://www.rondebruin.nl/easyfilter.htm


--


Regards Ron de Bruinhttp://www.rondebruin.nl/tips.htm


"flymo" wrote in ooglegroups.com...
Hello All,
Totally new to excel macros and wondered if I could get some guidance.


I have a series of worksheets - one main and several that will be
populated from that sheet.


When certain records meet criteria, I use light yellow as a
highlighter for the background.....I need to be able to collect all
the highlighted records from sheet - 1st Assn to sheet - Failures.


I have the following macro recorded but it takes all the records not
the yellow ones (I set the format in Edit -Find-Options etc set the
color etc.


Application.FindFormat.Clear
With Application.FindFormat.Interior
.ColorIndex=36
End With
Range("C13:D248").Select
Selection.Copy
Sheets("Failures").Select
Range("C13:D248").Select
ActiveSheet.Paste


I have searched the groups for similar solutions and tried without
success.


Any help would be appreciated.


John



  #12   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default macro - copy all rows with colorindex 36

Sorry the add-in have only a option to copy in the same sheet (below or next to your data), new sheet or new workbook

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"flymo" wrote in message ups.com...
Hello Ron,
Yes, I tried that option and couldn't get it to work properly - I need
to add to a sheet within the current workbook. So while it did filter
and place the data in a new sheet, I didn't know how to get it to
apply to the one I needed.

Best regards
John

On Jun 6, 3:50 pm, "Ron de Bruin" wrote:
You can filter on a color in a column and choose the option to copy to a new sheet.
did you try that ?

--

Regards Ron de Bruinhttp://www.rondebruin.nl/tips.htm

"flymo" wrote in ooglegroups.com...
Hello Folks,
I have been trying to manipulate the following (excellent) code from
Barb without success.
The code does move the rows hightlighting with colorindex 36 to the
new worksheet, however, I need to remove the spaces (there may be
hundreds of records with only some highlighted) between records on the
new worksheet.
Having the color copy too would be great.


Sub CopyYellow()
Dim myRange As Range
Dim myCopyRange As Range
Dim r As Range
Dim sht As Worksheet


Set sht = Worksheets("Failures")
Set myRange = Range("C13:D248")
For Each r In myRange
If r.Interior.ColorIndex = 36 Then
If Not IsEmpty(r) Then
Debug.Print r.Address,
Debug.Print r.Text,
Debug.Print r.Value
sht.Range(r.Address).Value = r.Value
Debug.Print r.Address
End If
End If
Next r


End Sub


I would really appreciate any help as I'm at a loss(and new to excel
vba/macros) I need to get a good reference manual for this!


many thanks
John


Ron, I tried the EasyFilter and may not have using correctly -
couldn't get it to do what I needed (excellent tool tho')


On Jun 5, 7:02 am, flymo wrote:
Thanks Ron,


I'll check it out.


Appreciated


John


On Jun 4, 11:20 pm, "Ron de Bruin" wrote:


Hi flymo


Check out EasyFilterhttp://www.rondebruin.nl/easyfilter.htm


--


Regards Ron de Bruinhttp://www.rondebruin.nl/tips.htm


"flymo" wrote in ooglegroups.com...
Hello All,
Totally new to excel macros and wondered if I could get some guidance.


I have a series of worksheets - one main and several that will be
populated from that sheet.


When certain records meet criteria, I use light yellow as a
highlighter for the background.....I need to be able to collect all
the highlighted records from sheet - 1st Assn to sheet - Failures.


I have the following macro recorded but it takes all the records not
the yellow ones (I set the format in Edit -Find-Options etc set the
color etc.


Application.FindFormat.Clear
With Application.FindFormat.Interior
.ColorIndex=36
End With
Range("C13:D248").Select
Selection.Copy
Sheets("Failures").Select
Range("C13:D248").Select
ActiveSheet.Paste


I have searched the groups for similar solutions and tried without
success.


Any help would be appreciated.


John



  #13   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default macro - copy all rows with colorindex 36

John, try this one. (it's not mine, but one I found)

Sub DeleteRowsThatLookEmptyinColE()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual 'pre XL97 xlManual
Dim Rng As Range, ix As Long
Set Rng = Intersect(Range("E:E"), Sheet1.UsedRange)
For ix = Rng.Count To 1 Step -1
If Trim(Replace(Rng.Item(ix).Text, Chr(160), Chr(32))) = "" Then
Rng.Item(ix).EntireRow.Delete
End If
Next
done:
Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdating = True
End Sub



*** Sent via Developersdex http://www.developersdex.com ***
  #14   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default macro - copy all rows with colorindex 36

Hi Brian,
Thanks for the info - I'll try that.

Regards
John





On Jun 18, 7:56 am, Brian Bennett wrote:
John, try this one. (it's not mine, but one I found)

Sub DeleteRowsThatLookEmptyinColE()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual 'pre XL97 xlManual
Dim Rng As Range, ix As Long
Set Rng = Intersect(Range("E:E"), Sheet1.UsedRange)
For ix = Rng.Count To 1 Step -1
If Trim(Replace(Rng.Item(ix).Text, Chr(160), Chr(32))) = "" Then
Rng.Item(ix).EntireRow.Delete
End If
Next
done:
Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdating = True
End Sub

*** Sent via Developersdexhttp://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
change colorIndex, help me write an easy macro Matt_70501 Excel Programming 4 May 28th 06 07:38 PM
Copy rows macro Chris_t_2k5[_2_] Excel Programming 8 February 19th 06 03:19 PM
EXCEL VB Macro Run Time Error 1004 - Setting ColorIndex Erwin[_2_] Excel Programming 4 April 14th 04 03:52 PM
Is ther a way to change the interior.colorindex of multiple rows sdnicsm Excel Programming 2 April 5th 04 03:53 AM
Rows ColorIndex CG Rosén Excel Programming 1 December 31st 03 01:11 PM


All times are GMT +1. The time now is 10:21 PM.

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

About Us

"It's about Microsoft Excel"