$$Excel-Macros$$ Re: Conditional Formating of more than one cell

2009-10-30 Thread Bajji
blue On Oct 28, 1:02 am, RolfJ wrote: > What do you mean by 'Any color?' > > On Oct 27, 6:01 am, Bajji wrote: > > > > > Hi Rolf, > > > Let me put an example: > > > 1. Assume sheet1 has some information from Cells ranging A1 : G20 > > 2. When I run the macro, it should pop user form with 2 input

$$Excel-Macros$$ Re: Conditional Formating of more than one cell

2009-10-27 Thread RolfJ
What do you mean by 'Any color?' On Oct 27, 6:01 am, Bajji wrote: > Hi Rolf, > > Let me put an example: > > 1. Assume sheet1 has some information from Cells ranging A1 : G20 > 2. When I run the macro, it should pop user form with 2 input fields > asking for cell range (example A1 and C6) to colo

$$Excel-Macros$$ Re: Conditional Formating of more than one cell

2009-10-27 Thread RolfJ
I am sorry, but I am still not quite clear. What do you now mean by 'any color'? On Oct 27, 6:01 am, Bajji wrote: > Hi Rolf, > > Let me put an example: > > 1. Assume sheet1 has some information from Cells ranging A1 : G20 > 2. When I run the macro, it should pop user form with 2 input fields > a

$$Excel-Macros$$ Re: Conditional Formating of more than one cell

2009-10-27 Thread Hemant Hegde
Hi If I understood correctly what you are trying to do, I would suggest you to use "RefEdit" control which you may find in the additional controls dialog box in form toolbox. It will allow the user to select a range from the worksheet. then u can use the following code (supposing the name of the

$$Excel-Macros$$ Re: Conditional Formating of more than one cell

2009-10-27 Thread Bajji
Hi Rolf, Let me put an example: 1. Assume sheet1 has some information from Cells ranging A1 : G20 2. When I run the macro, it should pop user form with 2 input fields asking for cell range (example A1 and C6) to color 3. Based on the above cell ranges A1:C6, the macro should color(Any color) the

$$Excel-Macros$$ Re: Conditional Formating of more than one cell

2009-10-26 Thread RolfJ
I am sorry, but I don't understand what you mean. Please try again. On Oct 24, 5:08 am, Bajji wrote: > Hi Rolf, > I need similar help, little different way > > When I run the Macro, user form should pop up allowing to put the > array (a1: j10) details to color the rows > > Regards, > Sri > > On

$$Excel-Macros$$ Re: Conditional Formating of more than one cell

2009-10-24 Thread Bajji
Hi Rolf, I need similar help, little different way When I run the Macro, user form should pop up allowing to put the array (a1: j10) details to color the rows Regards, Sri On Oct 24, 4:53 am, RolfJ wrote: > I can't figure a way to do this by way of conditional formating, but I > can offer some

$$Excel-Macros$$ Re: Conditional Formating of more than one cell

2009-10-24 Thread Bajji
HI Rolf, Thanks for providing the solution. I need similar help, but little different way. When I run the macro, user form should On Oct 24, 4:53 am, RolfJ wrote: > I can't figure a way to do this by way of conditional formating, but I > can offer some VBA code that would do the trick. Place

$$Excel-Macros$$ Re: Conditional Formating of more than one cell

2009-10-23 Thread RolfJ
I can't figure a way to do this by way of conditional formating, but I can offer some VBA code that would do the trick. Place the following code into the a standard VBA module of your workbook: Public Sub ColorTable() Dim rRow As Range For Each rRow In ActiveSheet.UsedRange.Rows I