Re: $$Excel-Macros$$ Macro coding

2012-04-28 Thread Deba Ranjan
t:* Apr/Sat/2012 04:11 > *To:* excel-macros@googlegroups.com > *Subject:* Re: $$Excel-Macros$$ Macro coding > > ** ** > > *Hi sir, > > See the below coding, you will find that there are so many steps and so > on. Can we run like so in the macros, if so please tell me t

RE: $$Excel-Macros$$ Macro coding

2012-04-28 Thread Rajan_Verma
@googlegroups.com] On Behalf Of Deba Ranjan Sent: Apr/Sat/2012 04:11 To: excel-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ Macro coding Hi sir, See the below coding, you will find that there are so many steps and so on. Can we run like so in the macros, if so please tell me the procedure

Re: $$Excel-Macros$$ Macro coding

2012-04-28 Thread Deba Ranjan
*Hi sir, See the below coding, you will find that there are so many steps and so on. Can we run like so in the macros, if so please tell me the procedure to that. * eg:- Sub Main() ' Inserts random numbers on the active worksheet Dim Counter As Integer Dim RowMax As Integer, ColMax As

Re: $$Excel-Macros$$ Macro coding

2012-04-28 Thread Sam Mathai Chacko
What do you mean by appropriate code? Regards, Sam On Sat, Apr 28, 2012 at 3:42 PM, Deba Ranjan wrote: > *Hi sir, > >I tried many times but the coding never comes, i mean the appropriate > coding never comes. kindly sort out. > * > > > > Thanks & Regards,* > * > > *Deba Ranjan P*** > >

Re: $$Excel-Macros$$ Macro coding

2012-04-28 Thread Deba Ranjan
*Hi sir, I tried many times but the coding never comes, i mean the appropriate coding never comes. kindly sort out. * Thanks & Regards,* * *Deba Ranjan P*** On Sat, Apr 28, 2012 at 2:17 PM, Sam Mathai Chacko wrote: > You can record macros in Excel. To know how to record macros, just

Re: $$Excel-Macros$$ Macro coding

2012-04-28 Thread Sam Mathai Chacko
You can record macros in Excel. To know how to record macros, just do a google search. REgards, Sam Mathai Chack On Sat, Apr 28, 2012 at 1:42 PM, Deba Ranjan wrote: > *Hi Experts, > > Is there any trick or any software to create macros coding. i have seen > many from the experts that they eas

Re: $$Excel-Macros$$ Macro-coding required

2011-11-13 Thread Sam Mathai Chacko
Private Sub OptionButton1_Click() With ComboBox1 .List = Sheet1.Range("D9:D11").Value .ListIndex = 0 End With End Sub Private Sub OptionButton2_Click() With ComboBox1 .List = Sheet1.Range("F9:F11").Value .ListIndex = 0 End With End Sub Regards