<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-9139734260544670283</id><updated>2011-04-21T13:35:51.986-07:00</updated><title type='text'>VBA MS</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://mandeepvba.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9139734260544670283/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://mandeepvba.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Mandeep Singh Narang</name><uri>http://www.blogger.com/profile/07532953561052455020</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-9139734260544670283.post-340822267406511299</id><published>2008-08-24T03:10:00.000-07:00</published><updated>2008-08-27T07:15:43.987-07:00</updated><title type='text'>CRISP-DM Datamining Phases</title><content type='html'>&lt;a href="http://2.bp.blogspot.com/_vm88o7MulL0/SLE00jYcK5I/AAAAAAAAABQ/_tmDtjzkLI4/s1600-h/CRISP.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5238025919064189842" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://2.bp.blogspot.com/_vm88o7MulL0/SLE00jYcK5I/AAAAAAAAABQ/_tmDtjzkLI4/s320/CRISP.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;CRISP-DM is widely know industry standard for Data Mining.&lt;br /&gt;Learn more about CRISP-DM in my Article &lt;a href="http://www.articlesbase.com/project-management-articles/data-mining-phasesprocess-534269.html"&gt;&lt;br /&gt;(Data Mining Phases)&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Cheers.&lt;br /&gt;Mandeep Singh&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9139734260544670283-340822267406511299?l=mandeepvba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mandeepvba.blogspot.com/feeds/340822267406511299/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9139734260544670283&amp;postID=340822267406511299' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9139734260544670283/posts/default/340822267406511299'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9139734260544670283/posts/default/340822267406511299'/><link rel='alternate' type='text/html' href='http://mandeepvba.blogspot.com/2008/08/crisp-dm-datamining-phases.html' title='CRISP-DM Datamining Phases'/><author><name>Mandeep Singh Narang</name><uri>http://www.blogger.com/profile/07532953561052455020</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_vm88o7MulL0/SLE00jYcK5I/AAAAAAAAABQ/_tmDtjzkLI4/s72-c/CRISP.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9139734260544670283.post-7496140921463189030</id><published>2008-08-18T06:15:00.000-07:00</published><updated>2008-08-18T06:24:56.467-07:00</updated><title type='text'>First VBA Example</title><content type='html'>Hi everyone&lt;br /&gt;&lt;br /&gt;This time you i will help you to write your first VBA code in Excel. Use following steps.&lt;br /&gt;1. Open Excel.&lt;br /&gt;2. Go to View&gt;toolbar&gt;visual basic&lt;br /&gt;3. Click on control toolbox( on the visual basci toolbar)&lt;br /&gt;4. Click on Command Button( move mouse accross the different icons to view the name of&lt;br /&gt;different objects).&lt;br /&gt;5. Place it on the Excel sheet.&lt;br /&gt;6. Double click on the command button.&lt;br /&gt;7. Place following code there.&lt;br /&gt;Range("a1").Select&lt;br /&gt;Range("a1").Value = "Welcome to VBA MS Blog"&lt;br /&gt;8. Now you code will look like this:&lt;br /&gt;&lt;br /&gt;Private Sub CommandButton1_Click()&lt;br /&gt;&lt;br /&gt;     Range("a1").Select&lt;br /&gt;     Range("a1").Value = "Welcome to VBA MS Blog"&lt;br /&gt;&lt;br /&gt;End Sub&lt;br /&gt;&lt;br /&gt;9. Go back to excel window.&lt;br /&gt;10. Click exit design button on the Visual Basic Toolbar.&lt;br /&gt;11. No Click the Button and see "Welcom to VBA MS Blog" in  A1 Address.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;You can post your comments about this example. You can also ask questions and example(VBA).&lt;br /&gt;&lt;br /&gt;Mandeep Singh&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9139734260544670283-7496140921463189030?l=mandeepvba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mandeepvba.blogspot.com/feeds/7496140921463189030/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9139734260544670283&amp;postID=7496140921463189030' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9139734260544670283/posts/default/7496140921463189030'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9139734260544670283/posts/default/7496140921463189030'/><link rel='alternate' type='text/html' href='http://mandeepvba.blogspot.com/2008/08/first-vba-example.html' title='First VBA Example'/><author><name>Mandeep Singh Narang</name><uri>http://www.blogger.com/profile/07532953561052455020</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9139734260544670283.post-217016727724539065</id><published>2008-08-16T20:44:00.000-07:00</published><updated>2008-08-16T23:32:50.191-07:00</updated><title type='text'>VBA</title><content type='html'>VBA (Visual Basic for Application) is powerful language used to automate MS Office Application. According to my experience VBA is mostly used to automate MS-Excel and MS-Access as compare to other office application. No one can realize the power of VBA. Every day there are many different examples of VBA written by the VBA programmers all over the world.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In next blog i will show you some simple example of VBA code. If VBA is new concept for you, you can go on google and find more about VBA Programming.&lt;br /&gt;&lt;br /&gt;Mandeep Singh&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9139734260544670283-217016727724539065?l=mandeepvba.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mandeepvba.blogspot.com/feeds/217016727724539065/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9139734260544670283&amp;postID=217016727724539065' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9139734260544670283/posts/default/217016727724539065'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9139734260544670283/posts/default/217016727724539065'/><link rel='alternate' type='text/html' href='http://mandeepvba.blogspot.com/2008/08/vba.html' title='VBA'/><author><name>Mandeep Singh Narang</name><uri>http://www.blogger.com/profile/07532953561052455020</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
