Re: $$Excel-Macros$$ Getting Minimum no highlighted

2013-01-20 Thread Prince
Hi Amit, Please share your workbook and tell the criteria of the conditional formatting. Regards Prince On Monday, January 21, 2013 10:44:13 AM UTC+5:30, Mitr wrote: > > Hi Anil > > Can you please help me in doing conditional formatting in this case. > > > Regards > > Amit > > > On Thu, Jan 17,

Re: $$Excel-Macros$$ Getting Minimum no highlighted

2013-01-16 Thread अनिल नारायण गवली
Dear Amit Pl see the attached file. Is is OK? Warm Regards, Gawli Anil On Thu, Jan 17, 2013 at 11:23 AM, Amit Gandhi wrote: > Thanks Anil > > I am following all below steps, but unable to apply right min formula. Can > you please suggest what MIN formula to be applied based on attached sampl

Re: $$Excel-Macros$$ Getting Minimum no highlighted

2013-01-16 Thread Amit Gandhi
Thanks Anil I am following all below steps, but unable to apply right min formula. Can you please suggest what MIN formula to be applied based on attached sample file. Regards Amit On Thu, Jan 17, 2013 at 11:08 AM, अनिल नारायण गवली wrote: > Dear Amit, > > First select the desire coloum and cl

Re: $$Excel-Macros$$ Getting Minimum no highlighted

2013-01-16 Thread Amit Gandhi
Thanks Amresh On Wed, Jan 16, 2013 at 6:33 PM, Amresh Maurya wrote: > PFA ATTACHED FILE. > > USE THIS CODE > Sub minmm() > Dim n As Integer > Range("B5:B5").Select > With Selection.Interior > .PatternColorIndex = xlAutomatic > .ThemeColor = xlThemeColorDark1 > .TintAndS

Re: $$Excel-Macros$$ Getting Minimum no highlighted

2013-01-16 Thread अनिल नारायण गवली
Dear Amit, First select the desire coloum and click on conditional formatting and there select a new rule and then click on format only cell that contain. there u'll find cellvalue,between,and two formula text box change the text box of between to lessthanequalto and then the next texbox write the

Re: $$Excel-Macros$$ Getting Minimum no highlighted

2013-01-16 Thread Amresh Maurya
PFA ATTACHED FILE. USE THIS CODE Sub minmm() Dim n As Integer Range("B5:B5").Select With Selection.Interior .PatternColorIndex = xlAutomatic .ThemeColor = xlThemeColorDark1 .TintAndShade = 0 .PatternTintAndShade = 0 End With n = 5 Sheet1.Cells(5, 14).Formula =

Re: $$Excel-Macros$$ Getting Minimum no highlighted

2013-01-16 Thread Amit Gandhi
Thanks Anil But i am unable to do so? Can you show this in example file. Regards Amit On Wed, Jan 16, 2013 at 2:03 PM, अनिल नारायण गवली wrote: > Dear Amit, > > U can use conditional format for each col in that u can use format only > rows that contain lessthanequalto and in formula write =min

Re: $$Excel-Macros$$ Getting Minimum no highlighted

2013-01-16 Thread अनिल नारायण गवली
Dear Amit, U can use conditional format for each col in that u can use format only rows that contain lessthanequalto and in formula write =min(range) and format cell color to desire color. Regards, Gawli Anil On Wed, Jan 16, 2013 at 1:24 PM, Amresh Maurya wrote: > Hello Amit, > > PFA file .Ki

Re: $$Excel-Macros$$ Getting Minimum no highlighted

2013-01-15 Thread Amresh Maurya
Hello Amit, PFA file .Kindly use the below code. Sub minmm() n = 5 Sheet1.Cells(5, 14).Formula = "=MIN(RC[-10],RC[-6],RC[-2])" Sheet1.Range(Cells(5, 14), Cells(10, 14)).Select Selection.FillDown Sheet1.Range(Cells(5, 15), Cells(10, 15)) = "=IF(RC[-1]=RC[-3],""Suresh"",IF(RC[-7]=RC[-1],""mukesh"",

$$Excel-Macros$$ Getting Minimum no highlighted

2013-01-15 Thread Amit Gandhi
Hi Experts I have some data and I have get minimum no out of that by MIN formula. Now I want a formula or VBA macro to do following. 1. Minimum of column D, H, L gets highlighted as shown above. 2. Minimum's name is mentioned against each cell in column O. Pls see sample file attached. Pls hel

$$Excel-Macros$$ GETTING MINIMUM NO HIGHLIGHTED

2013-01-14 Thread Amit Gandhi
-- Forwarded message -- From: Amit Gandhi Date: Tue, Jan 15, 2013 at 1:07 PM Subject: $$Excel-Macros$$ To: excel-macros@googlegroups.com Hi Experts I have some data and I have get minimum no out of that by MIN formula. Now I want a formula or VBA macro to do following. 1. Minim