Re: $$Excel-Macros$$ Delete date & count numbers

2012-01-01 Thread Kris
In the example Kumar Raje Gowda should be 1. Another one =COUNT(INDEX($A$2:$A$595,MATCH(J2,$A$2:$A$595,0)):INDEX($A$2:$A$595,MATCH(J2,$A$2:$A$595,0)+MIN(IFERROR(MATCH("*",INDEX($A$2:$A$595,MATCH(J2,$A$2:$A$595,0)+1):$A$595,0), Kris -- FORUM RULES (934+ members already BANNED for violat

$$Excel-Macros$$ Concatinate

2012-01-01 Thread Bob
I have a huge problem I just can not solve.I'm trying to concatinate several things. I have a user form with 15 optionbuttons. If specific optionbutton are clicked then do a certain thing.. Such as If optionbutton1 is clicked then put Always"350" Optionbutton1 is always "S" then whatever is in Labe

RE: $$Excel-Macros$$ Concatinate

2012-01-01 Thread Rajan_Verma
Can you attach a sample file to better understanding of you query? Rajan. -Original Message- From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of Bob Sent: Jan/Sun/2012 03:24 To: MS EXCEL AND VBA MACROS Subject: $$Excel-Macros$$ Concatinate I have a hug

$$Excel-Macros$$ Fill Color in Shape

2012-01-01 Thread bhupendra singh raghav
Hi Group, Excel is not recording macro to work with shapes .How to fill Color in shapes by VBA Regards Raghav -- FORUM RULES (934+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Proble

Re: $$Excel-Macros$$ Fill Color in Shape

2012-01-01 Thread rajan verma
Sub FillColor() dim sh as shape set sh= activeSheet.shapes("MyShape") sh.fill.forecolor=rgb(255,0,0) end Sub On Sun, Jan 1, 2012 at 5:24 PM, bhupendra singh raghav < raghav.bhupen...@gmail.com> wrote: > Hi Group, > Excel is not recording macro to work with shapes .How to fill Color in > shapes b

Re: $$Excel-Macros$$ Fill Color in Shape

2012-01-01 Thread dguillett1
Sub changeShapecolor() ActiveSheet.Shapes("Rectangle 2").Fill.ForeColor.SchemeColor = 12’blue End Sub Don Guillett SalesAid Software dguille...@gmail.com From: bhupendra singh raghav Sent: Sunday, January 01, 2012 5:54 AM To: excel-macros@googlegroups.com Subject: $$Excel-Macros$$ Fill Color in

Re: $$Excel-Macros$$ Concatinate

2012-01-01 Thread Bob
I've looked everywhere. I can not find where you attach a file. Thanks so much for your help! On Jan 1, 5:08 am, "Rajan_Verma" wrote: > Can you attach a sample file to better understanding of you query? > > Rajan. > > > > -Original Message- > From: excel-macros@googlegroups.com [mailto:ex

$$Excel-Macros$$ RE: Search DOUBT

2012-01-01 Thread Rajan_Verma
Great sir ji From: Kris [mailto:krishnak...@gmail.com] Sent: Jan/Sun/2012 08:51 To: excel-macros@googlegroups.com Cc: Excel Member Subject: Re: Search DOUBT Hi, PFA. Kris -- FORUM RULES (934+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poor t

RE: $$Excel-Macros$$ Concatinate

2012-01-01 Thread Asa Rossoff
Hi Bob, Just email it to the group. If you are posting to the group online, use email instead. excel-macros@googlegroups.com. -Original Message- From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of Bob Sent: Sunday, January 01, 2012 6:42 AM To: MS EXCEL

Re: $$Excel-Macros$$ To Extract a text with Conditions

2012-01-01 Thread Haseeb Avarakkan
Hello Faisal & Evey one, This is what my understanding, *If any code repeats after a dest, just before this code consider as final dest.* Eg: Row 101. DMS-BAH-AUH-CGK-AUH-DMM AUH repeats after CGK, so final dest, CGK. Row 109, DMS-BAH-DAM-BAH-DMM BAH repeat after DAM, so final dest, DAM

Re: $$Excel-Macros$$ Lookup value by fulfill some condition in list

2012-01-01 Thread NOORAIN ANSARI
Dear Ashish, Try this one =INDIRECT(ADDRESS((MATCH("*"&$B$3&"*",$B$9:$B$14,0)+8),3)) See attached sheet. On Thu, Dec 29, 2011 at 6:51 PM, Ashish Bhalara wrote: > Dear Experts, > > I need to use vlookup function to look value by fulfill some particular > condition. The example to understand the

Re: $$Excel-Macros$$ Number Stored text i need convert to number

2012-01-01 Thread chandra sekaran
Dear all Date also stored in texthow i convert to date pl advice Regards chandru -- FORUM RULES (934+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poor thread titles, like Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advi

Re: $$Excel-Macros$$ To Extract a text with Conditions

2012-01-01 Thread Kris
In that case my UDF would be *Dim dic As Object Function FINALDEST(ByRef v) As String Dim x, i As Long If TypeOf v Is Range Then v = v.Value2 x = Split(v, "-") If dic Is Nothing Then Set dic = CreateObject("scripting.dictionary") With dic

$$Excel-Macros$$ Strip HTML in Excel

2012-01-01 Thread Vishwamitra Mishra
Hi All, I have written a function to strip HTML from a String kept in a Cell. How to use this UDF (User Defined Function), you can visit this link: http://www.learnexcelmacro.com/2011/12/strip-html-how-to-remove-html-tags-from-a-string-in-vba/ -

Re: $$Excel-Macros$$ Number Stored text i need convert to number

2012-01-01 Thread Kris
Hi, For Numbers, Select each column on by one. Go to Data > TextToColumns > Next > Next check on General > Finish. For date, check Date Instead of General and select DMY > Finish. Kris -- FORUM RULES (934+ members already BANNED for violation) 1) Use concise, accurate thread titles. Poo

Re: $$Excel-Macros$$ Number Stored text i need convert to number

2012-01-01 Thread chandra sekaran
Dear all, Any VBA code is there ? regards chandru On Mon, Jan 2, 2012 at 10:46 AM, Kris wrote: > Hi, > > For Numbers, > > Select each column on by one. Go to Data > TextToColumns > Next > Next > check on General > Finish. > > For date, check Date Instead of General and select DMY > Finish.

Re: $$Excel-Macros$$ Number Stored text i need convert to number

2012-01-01 Thread Kris
Sub kTest() Dim rngDate As Range Dim rngNum As Range, i As Long Set rngDate = Range("c3:c7688") Set rngNum = Range("d3:e7688") rngDate.TextToColumns Destination:=rngDate.Cells(1), DataType:=xlDelimited, _ TextQualifier:=xlDoubleQuote, ConsecutiveD