Dear Dilip,

It wud have been gr8 if u also explain the codes in brief..when to use which 
type code.

Thanks and regards
CA Sandeep Kr Chhajer.

Sent on my BlackBerry® from Vodafone

-----Original Message-----
From: Dilip Pandey <dilipan...@gmail.com>
Sender: excel-macros@googlegroups.com
Date: Fri, 21 Oct 2011 11:09:04 
To: <excel-macros@googlegroups.com>
Reply-To: excel-macros@googlegroups.com
Subject: Re: $$Excel-Macros$$ How to learn vba

Hi,

Below are the explanation of looping codes:-

Looping codes
============

Do While/ Until "conditon"
--------
--------
Exit Do
--------
--------
Loop

`````````````````````````````````````


Do
---------
---------
Exit Do
---------
---------
Loop While / Until "condition"

''''''''''''''''''''''''''''''''''''''


While "condition"
--------
--------
--------
Wend

````````````````````````````````````````

If "condition" Then
--------
--------
--------
Else
--------
--------
--------
End if

``````````````````````````````````````````

Case "condition"
--------
--------
--------
End Case

``````````````````````````````````````````

For "condition"
--------
--------
--------
Next

``````````````````````````````````````````

For Each "condition"
--------
--------
--------
Next

`````````````````````````````````````````````

With "selection"
--------
--------
--------
End with

=============================================================


Using "FOR" loop for each sheet in workbook
==============================================
For i = 1 To Sheets.Count
Sheets(i).Select
'your code here
Next


Regards,
DILIPandey


On 10/20/11, Mr excel <excelkeec...@gmail.com> wrote:
> 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 some ideas or techniques for learning...Thanks in advance to all
> those who had helped me...
>
> --
> ----------------------------------------------------------------------------------
> 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 @ http://www.linkedin.com/groups?gid=1871310
> 3. Excel tutorials at http://www.excel-macros.blogspot.com
> 4. Learn VBA Macros at http://www.quickvba.blogspot.com
> 5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
>
> To post to this group, send email to excel-macros@googlegroups.com
>
> <><><><><><><><><><><><><><><><><><><><><><>
> Like our page on facebook , Just follow below link
> http://www.facebook.com/discussexcel
>


-- 
Thanks & Regards,

DILIP KUMAR PANDEY, mvp
       MBA,B.Com(Hons),BCA
Mobile: +91 9810929744
dilipan...@gmail.com
dilipan...@yahoo.com
New Delhi - 62, India

-- 
----------------------------------------------------------------------------------
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 @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com

<><><><><><><><><><><><><><><><><><><><><><>
Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel

-- 
----------------------------------------------------------------------------------
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 @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com

<><><><><><><><><><><><><><><><><><><><><><>
Like our page on facebook , Just follow below link
http://www.facebook.com/discussexcel

Reply via email to