$$Excel-Macros$$ querry ncg

2011-10-19 Thread Nemi Gandhi
attached sheet. Please provide formula and vab code if possible. -- Nemi Gandhi 98204 92963 -- -- Some important links for excel users: 1. Follow us on TWITTER for tips tricks and links : http://twitter.com/exceld

Re: $$Excel-Macros$$ querry ncg

2011-10-19 Thread ashish koul
=INDEX($H:$AA,MATCH(A2,H:H,0)+B2,MATCH(C2,$H$3:$T$3,0)) On Wed, Oct 19, 2011 at 12:41 PM, Nemi Gandhi wrote: > attached sheet. Please provide formula and vab code if possible. > > -- > Nemi Gandhi > 98204 92963 > > -- > > -

Re: $$Excel-Macros$$ queary about a jpg file into excel or pdf file

2011-10-19 Thread anil kumar
Hi karan and ashis, Thanks for your soon reply. Anil -- -- Some important links for excel users: 1. Follow us on TWITTER for tips tricks and links : http://twitter.com/exceldailytip 2. Join our LinkedIN group @ h

Re: $$Excel-Macros$$ querry ncg

2011-10-19 Thread NOORAIN ANSARI
Dear Nemi, Please try below formula and see attached sheet.. {=OFFSET(INDEX($I$3:$T$3,MATCH(C2,$I$3:$T$3,0)),MATCH(B2,$H$4:$H$15,0),0)} -- Thanks & regards, Noorain Ansari *http://excelmacroworld.blogspot.com/* *http://noorain-ansari.blogspot.com/*

Re: $$Excel-Macros$$ Color count in a row

2011-10-19 Thread NOORAIN ANSARI
Dear Naresh, please see attached sheet, i hope it will help to u.. -- Thanks & regards, Noorain Ansari *http://excelmacroworld.blogspot.com/* *http://noorain-ansari.blogspot.com/* On Wed, Oct 19, 2011 at 4:21 PM, nares

$$Excel-Macros$$ Excel auto filter using criteria from Combobox items

2011-10-19 Thread ICWAI Help
Hello everyone could anyone please let meknow the code for Excel auto filter using criteria from Combobox items i have 5 to 6 criteria from a combobox in form and i need to extract the data from excelsheet if any link that also apprciated. -- -

Re: $$Excel-Macros$$ Color count in a row

2011-10-19 Thread NOORAIN ANSARI
[Revised] Dear Naresh, Please try it.. *Function Color_Count(mycell As Range) i = 0 For Each Rng In mycell If Rng.Interior.ColorIndex > 0 Then i = i + 1 End If Next Color_Count = i End Function* Thanks & regards, Noorain Ansari *http://excelmacroworld.blogspot.com/*

Re: $$Excel-Macros$$ Excel auto filter using criteria from Combobox items

2011-10-19 Thread NOORAIN ANSARI
Dear ICWAI, Can you share Worksheet with group. -- Thanks & regards, Noorain Ansari *http://excelmacroworld.blogspot.com/* *http://noorain-ansari.blogspot.com/* On Wed, Oct 19, 2011 at 5:11 PM, ICWAI Help wrote: > He

Re: $$Excel-Macros$$ Excel auto filter using criteria from Combobox items

2011-10-19 Thread ICWAI Help
Hi Noorin i cant share the workbook its higly confidential anyway just a code help or link is enough for me. is this below code is right let me know Selection.AutoFilter Field:=16, Criteria1:=ctr1 Selection.AutoFilter Field:=27, Criteria1:=ctr2 Selection.AutoFilter Field:=15, Criteria1:=ctr

Re: $$Excel-Macros$$ Color count in a row

2011-10-19 Thread ashish koul
http://www.excelvbamacros.com/2011/02/function-to-count-cells-on-basis-of.html http://www.excelvbamacros.com/2011/02/function-to-count-specific-fill-or.html http://www.excelvbamacros.com/2011/02/function-to-sum-specific-fill-or.html http://www.excelvbamacros.com/2011/02/function-to-sum-cells-on-b

Re: $$Excel-Macros$$ Schedule Multiple Macros to Auto Run

2011-10-19 Thread Sam Mathai Chacko
You can add any number of Application.OnTime commands. The only catch is that VBA by nature is not multithreaded. You will not be able to run two routines at the same time. So for example if a macro routine takes 5 seconds to complete, and you have already scheduled to run it immediately with a sec

Re: $$Excel-Macros$$ Color count in a row

2011-10-19 Thread Sam Mathai Chacko
If you were looking to find how many yellows, and how many reds there are, then I would modify NOORAIN's code a little like so Function COLORCOUNT(rngArrayCells As Range, rngColorCell As Range) Dim rngCell As Range, lngCells As Long For Each rngCell In rngArrayCells If rngCell.Int

Re: $$Excel-Macros$$ Excel auto filter using criteria from Combobox items

2011-10-19 Thread Sam Mathai Chacko
Yes, your code seems to be doing the right thing. Are you still looking for a solution? Sam Mathai Chacko (GL) On Wed, Oct 19, 2011 at 6:07 PM, ICWAI Help wrote: > Hi Noorin i cant share the workbook its higly confidential anyway just > a code help or link is enough for me. > is this below code

Re: $$Excel-Macros$$ Paste into a Named Range

2011-10-19 Thread Cab Boose
Hi Don Wow, works just like magic. Still reading it over and over to see how it works. What part of the code says to 'cut' and and also the 'paste' ? For testing my project I would like to drun that code every 5 seconds for a max of 10 times. Like having a macro to 'call ' this macro and the

Re: $$Excel-Macros$$ How to learn vba

2011-10-19 Thread Mr excel
Thanks all,for the replies.i had been working with the VBA macro recorder.Its really very funny & intersting to learn like this.But there are some situation where i need to learn the programming techniques like Do Loops,While Loops etc which cannot be learnt from macro recording.Please suggest me s

Re: $$Excel-Macros$$ Un lock the file.

2011-10-19 Thread Imran Ansari
Hi Anish, Can you tell me as to how can i get the same Also please tell me the name of the software that your are using and the amount in rupees to spend for same Do you have a VBA password cracker i did ask this question to all but unfortunately no one has replied Please reply Regards, Imran

$$Excel-Macros$$ Removing specific characters from a string of text

2011-10-19 Thread Zeunasc
I know that this is relatively easy, but it has been years since I have done any Excel VBA. I am parsing out some firewall rules, and in order to compare lines, I need to remove a section of text from within a string. The strings will look like this: access-list BldA-I line 5 remark 10/19/2011 p

$$Excel-Macros$$ Extract (Text & Numbers)

2011-10-19 Thread karan 1237
Dear All, Hope you all are doing well..! I need your assistance to sort out my problem. I need to extract Pincode, Principal Name, Establishment. I'v attached the sheet. Kindly help. Thanks Kaяan

$$Excel-Macros$$ querry

2011-10-19 Thread Nemi Gandhi
Thanks Ashishbhai and Noorainbhai, but i made little mistake in asking query and is posted agains. The result i want is if A2=surya or chandra or mangal or budh or guru or shukra or shani, look for value in appropriate table and get result. -- Nemi Gandhi 98204 92963 --