Re: $$Excel-Macros$$ Array If

2011-01-18 Thread hanumant shinde
Thanks Ashish From: ashish koul To: excel-macros@googlegroups.com Sent: Tue, 18 January, 2011 10:53:44 AM Subject: Re: $$Excel-Macros$$ Array If   TYPE THIS IN B1 =IF(COUNTIF(A1:A1000,"hanumant" )>=1,"true","false") On Tue,

Re: $$Excel-Macros$$ Array If

2011-01-18 Thread TG T
Dear Hanumant, check it: =IF(COUNTIF($A$1:$A$1000,"*hanumant*" )>=1,COUNTIF($A$1:$A$1000,"*hanumant*" ) & " Times available","Not Present") Regards Thamu On Tue, Jan 18, 2011 at 12:58 PM, Ankur Saraswat wrote: > Hi Hanumant, > > Try it: =IF(A1:A14="a",1,"0") > > > > > On Mon, Jan 17, 2011 at

Re: $$Excel-Macros$$ Array If

2011-01-18 Thread Ankur Saraswat
Hi Hanumant, Try it: =IF(A1:A14="a",1,"0") On Mon, Jan 17, 2011 at 1:03 AM, hanumant shinde wrote: > Hi Friends, > > I want to use IF condition like i used below but its no working. > I used below formula. > ={IF($A$8:$A$14="a",1,"")} > > f d s d f g a . > . > . > and so on > > this is

Re: $$Excel-Macros$$ Array If

2011-01-17 Thread Mayank Mishra
Hi Hanumant, use it like IF($A$8 ="a",1,"") and drag the formula till A14 or till last row it will give u 1 only if the cell will contain "a". Try this out. Rgds, Mayank On Mon, Jan 17, 2011 at 1:03 AM, hanumant shinde wrote: > Hi Friends, > > I want to use IF condition like i used below but i

Re: $$Excel-Macros$$ Array If

2011-01-17 Thread ashish koul
B1 and i ll get True or False in B1. > > > -- > *From:* Srinivasan Ethirajalu > *To:* hanumant_5...@yahoo.co.in; excel-macros@googlegroups.com > *Sent:* Mon, 17 January, 2011 9:10:49 AM > *Subject:* Re: $$Excel-Macros$$ Array If > > Hi han

Re: $$Excel-Macros$$ Array If

2011-01-17 Thread hanumant shinde
dont wanna type any formula in all cells from A1 to A1000. its jus i ll type 1 formula in B1 and i ll get True or False in B1. From: Srinivasan Ethirajalu To: hanumant_5...@yahoo.co.in; excel-macros@googlegroups.com Sent: Mon, 17 January, 2011 9:10:49 AM Subject

Re: $$Excel-Macros$$ Array If

2011-01-16 Thread C.G.Kumar
USE THIS =IF(A$8$:$A$14="a",1,"") If u want to use as an array use cntr+shift+enter. It will give u proper result. Thanks & Regards, C.G.Kumar On Mon, Jan 17, 2011 at 1:03 AM, hanumant shinde wrote: > Hi Friends, > > I want to use IF condition like i used below but its no working. > I used be

Re: $$Excel-Macros$$ Array If

2011-01-16 Thread Manoj kumar
HI, This might help u... Regards, Manoj Kumar On Mon, Jan 17, 2011 at 1:03 AM, hanumant shinde wrote: > Hi Friends, > > I want to use IF condition like i used below but its no working. > I used below formula. > ={IF($A$8:$A$14="a",1,"")} > > f d s d f g a . > . > . > and so on > > thi

Re: $$Excel-Macros$$ Array If

2011-01-16 Thread Srinivasan Ethirajalu
Hi hanumant, You are checking absolute ranges(A8:A14) with a single value "a". Which is not possible. Please narrate your requirement as well as send with sample data. On Mon, Jan 17, 2011 at 1:03 AM, hanumant shinde wrote: > Hi Friends, > > I want to use IF condition like i used below but it

$$Excel-Macros$$ Array If

2011-01-16 Thread hanumant shinde
Hi Friends, I want to use IF condition like i used below but its no working. I used below formula. ={IF($A$8:$A$14="a",1,"")} f d s d f g a . . . and so on this is my data which is random. i want to write if any of the row in above data has "a" then write 1 else 0. if condition will com