<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Learn Excel : Tutorial, Tips, Videos and Much More.</title>
	<atom:link href="http://learnexcel.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://learnexcel.org</link>
	<description>Totally free high quality videos, articles and tutorials to help you start learning excel today. Micorsoft Excel tips/tricks, formulas and much more</description>
	<lastBuildDate>Sun, 12 Aug 2012 04:16:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>How to search through array in Visual Basic?</title>
		<link>http://learnexcel.org/blog/learn-excel-macros/how-to-search-through-array-in-visual-basic/</link>
		<comments>http://learnexcel.org/blog/learn-excel-macros/how-to-search-through-array-in-visual-basic/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 18:40:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Learn Excel Macros]]></category>

		<guid isPermaLink="false">http://learnexcel.org/blog/learn-excel-macros/how-to-search-through-array-in-visual-basic/</guid>
		<description><![CDATA[In my program I have an array that contains the results of the rolls of a die. The user input how many times they wanted it rolled. I need to search through that array to find how many times a certain number shows up (also one that the user chose) to find it&#8217;s probability. So [...]]]></description>
				<content:encoded><![CDATA[<p>In my program I have an array that contains the results of the rolls of a die.  The user input how many times they wanted it rolled. I need to search through that array to find how many times a certain number shows up (also one that the user chose) to find it&#8217;s probability.</p>
<p>So I&#8217;d like a loop (or something else, but a loops is the only thing I can think of) to be able to loop through the array and keep track of how many times it shows up.  I was going to use UBound and LBound, but because I&#8217;m finding the probability in a different procedure it won&#8217;t work.</p>
<p>Here&#8217;s what I have</p>
<p>Public Class Form1<br />
    Dim intTosses As Integer<br />
    Dim ResultTosses() As Integer<br />
    Dim intFindProb As Integer         &#8216;This is the number that the user wants to see the probability for</p>
<p>    Private Sub txtNumTosses_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtNumTosses.TextChanged<br />
        Dim intcounter As Integer<br />
        Dim intResult As Integer<br />
        intTosses = Val(txtNumTosses.Text)<br />
        ReDim ResultTosses(intTosses)</p>
<p>        For intcounter = 1 To intTosses<br />
            intResult = Int(6 * Rnd(1) + 1)<br />
            ResultTosses(intcounter) = intResult<br />
        Next<br />
        lblProbability.Text = ResultTosses(intTosses)</p>
<p>    End Sub</p>
<p>    Private Sub txtNumProbability_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtNumProbability.TextChanged<br />
        Dim intpcounter As Integer<br />
    intFindProb = (Val(txtNumProbability.Text)<br />
&#8216;****Here is where I need to find out how many of intFindProb are in my ResultTosses Array****<br />
        If </p>
<p>        Next<br />
    End Sub<br />
End Class</p>
<p>If you could give a different example or just explain it that would be good, as it is something I need to pass in so I would like to put it together myself (we are allowed to ask for help, but the teacher is always busy), but I&#8217;m fairly lost so I&#8217;ll take what I can get.<br />
<br />The following code will allow the user to enter the number of rolls for one die that he wants to place in an array; and the two search numbers he desires to see howmany times they appear in the array. The number of occurrances for the two search numbers will appear in labels 1 and 2.  You can use these 2 numbers for any purpose.</p>
<p>There is a button, 3 text boxes and 2 labels on my form.</p>
<p>Public Class Form1</p>
<p>    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click<br />
        Dim HowMany As Integer<br />
        Dim Array(500) As Integer<br />
        Dim MaxIndex As Integer<br />
        Dim SearchNum1 As Integer = Val(TextBox2.Text)<br />
        Dim SearchNum2 As Integer = Val(TextBox3.Text)<br />
        Dim SearchNum1Cnt, SearchNum2Cnt As Integer<br />
        If IsNumeric(TextBox1.Text) Then<br />
            HowMany = Val(TextBox1.Text)<br />
            MaxIndex = HowMany &#8211; 1<br />
        End If<br />
        Dim Rnd As New Random<br />
        For i = 0 To MaxIndex<br />
            Array(i) = Rnd.Next(1, 7)<br />
        Next<br />
        For i = 0 To MaxIndex<br />
            &#8216;MsgBox(i &amp; &quot;   &quot; &amp; Array(i) &amp; &quot;   &quot; &amp; SearchNum1)<br />
            If Array(i) = SearchNum1 Then<br />
                SearchNum1Cnt += 1<br />
            End If<br />
            If Val(Array(i)) = SearchNum2 Then<br />
                SearchNum2Cnt += 1<br />
            End If<br />
        Next<br />
        Label1.Text = SearchNum1Cnt<br />
        Label2.Text = SearchNum2Cnt<br />
    End Sub</p>
<p>End Class</p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://learnexcel.org/blog/learn-excel-macros/how-to-search-through-array-in-visual-basic/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Before using Excel&#8217;s advanced filtering capabilities, what must you do first?</title>
		<link>http://learnexcel.org/blog/learn-advanced-excel/before-using-excels-advanced-filtering-capabilities-what-must-you-do-first/</link>
		<comments>http://learnexcel.org/blog/learn-advanced-excel/before-using-excels-advanced-filtering-capabilities-what-must-you-do-first/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 18:40:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Learn Advanced Excel]]></category>

		<guid isPermaLink="false">http://learnexcel.org/blog/learn-advanced-excel/before-using-excels-advanced-filtering-capabilities-what-must-you-do-first/</guid>
		<description><![CDATA[A) Define a criteria range B) Setup your relational operators C) Define a range for the filtered data? i think its c i am not sure what b means and theres stuff you can do before you do a]]></description>
				<content:encoded><![CDATA[<p>A) Define a criteria range</p>
<p>B) Setup your relational operators</p>
<p>C) Define a range for the filtered data?<br />
<br />i think its c<br />
i am not sure what b means and theres stuff you can do before you do a</p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://learnexcel.org/blog/learn-advanced-excel/before-using-excels-advanced-filtering-capabilities-what-must-you-do-first/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I want to develop strong skills in computer programming, specifically within&#8230;?</title>
		<link>http://learnexcel.org/blog/how-to-learn-excel/i-want-to-develop-strong-skills-in-computer-programming-specifically-within/</link>
		<comments>http://learnexcel.org/blog/how-to-learn-excel/i-want-to-develop-strong-skills-in-computer-programming-specifically-within/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 18:40:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to Learn Excel?]]></category>

		<guid isPermaLink="false">http://learnexcel.org/blog/how-to-learn-excel/i-want-to-develop-strong-skills-in-computer-programming-specifically-within/</guid>
		<description><![CDATA[- Excel VBA and Macros - Web Design Which programming languages do I need to learn, and what is the best way of going about learning these items in your opinion? Take classes? Read books? Online courses? I know it will take quite a while to develop a strong understanding about these topics &#8211; but [...]]]></description>
				<content:encoded><![CDATA[<p>- Excel VBA and Macros<br />
- Web Design </p>
<p>Which programming languages do I need to learn, and what is the best way of going about learning these items in your opinion? Take classes? Read books? Online courses? I know it will take quite a while to develop a strong understanding about these topics &#8211; but what is the best way to learn?</p>
<p>Thanks.<br />
<br />They have computer programming books and courses at http://www.touchtextbooks.com</p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://learnexcel.org/blog/how-to-learn-excel/i-want-to-develop-strong-skills-in-computer-programming-specifically-within/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>best way to learn excel?</title>
		<link>http://learnexcel.org/blog/how-to-learn-excel/best-way-to-learn-excel-2/</link>
		<comments>http://learnexcel.org/blog/how-to-learn-excel/best-way-to-learn-excel-2/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 18:40:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How to Learn Excel?]]></category>

		<guid isPermaLink="false">http://learnexcel.org/blog/how-to-learn-excel/best-way-to-learn-excel-2/</guid>
		<description><![CDATA[I found the best way to learn Excel or any software program, for that matter, is to purchase a textbook. The best ones I have found for Excel are the Shelley Cashman series. They explain everything and they have a picture to show you what your page should look like. There are other book series [...]]]></description>
				<content:encoded><![CDATA[<p>
<br />I found the best way to learn Excel or any software program, for that matter, is to purchase a textbook. The best ones I have found for Excel are the Shelley Cashman series. They explain everything and they have a picture to show you what your page should look like. There are other book series such as &quot;Simply Visual&quot;. These can be found in school bookstores, but a cheaper source might be Amazon.com (they will lead you to good second hand resources), Powells.com, to name two. If you spend more than $25, shipping is free and in Oregon there is no sales tax.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://learnexcel.org/blog/how-to-learn-excel/best-way-to-learn-excel-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to write a VBA/Excel stopwatch?</title>
		<link>http://learnexcel.org/blog/learn-excel-macros/how-to-write-a-vbaexcel-stopwatch/</link>
		<comments>http://learnexcel.org/blog/learn-excel-macros/how-to-write-a-vbaexcel-stopwatch/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 18:39:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Learn Excel Macros]]></category>

		<guid isPermaLink="false">http://learnexcel.org/blog/learn-excel-macros/how-to-write-a-vbaexcel-stopwatch/</guid>
		<description><![CDATA[I need a stopwatch for a an excel userform I will be using. I need the stop watch to use the format &#34;mm:ss&#34; and start/reset with the same button. I am new to VBA, and do not know how to do this, can anyone provide me a solution? You can&#8217;t do that for the device [...]]]></description>
				<content:encoded><![CDATA[<p>I need a stopwatch for a an excel userform I will be using. I need the stop watch to use the format &quot;mm:ss&quot; and start/reset with the same button. I am new to VBA, and do not know how to do this, can anyone provide me a solution?<br />
<br />You can&#8217;t do that for the device since there is no such feature available&#8230;</p>
<p>Good luck!</p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://learnexcel.org/blog/learn-excel-macros/how-to-write-a-vbaexcel-stopwatch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How can I use VBA in Excel to look up words in the &#8216;Word&#8217; dictionary/thesaurus?</title>
		<link>http://learnexcel.org/blog/learn-excel-macros/how-can-i-use-vba-in-excel-to-look-up-words-in-the-word-dictionarythesaurus/</link>
		<comments>http://learnexcel.org/blog/learn-excel-macros/how-can-i-use-vba-in-excel-to-look-up-words-in-the-word-dictionarythesaurus/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 18:39:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Learn Excel Macros]]></category>

		<guid isPermaLink="false">http://learnexcel.org/blog/learn-excel-macros/how-can-i-use-vba-in-excel-to-look-up-words-in-the-word-dictionarythesaurus/</guid>
		<description><![CDATA[I am experimenting with language parsing in Excel. I would like to use the dictionary and/or thesaurus in Word to look up definitions/synonyms for words that I have in my spreadsheet. I know that I can reference Word objects from VBA. Can anyone point me to some code that would help me do this please? [...]]]></description>
				<content:encoded><![CDATA[<p>I am experimenting with language parsing in Excel.  I would like to use the dictionary and/or thesaurus in Word to look up definitions/synonyms for words that I have in my spreadsheet.  I know that I can reference Word objects from VBA.  Can anyone point me to some code that would help me do this please?<br />
<br />In Excel 2010, just hit F7 (like you can do in Word, etc) &#8211; that will launch the same spell checker. No additional code required.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://learnexcel.org/blog/learn-excel-macros/how-can-i-use-vba-in-excel-to-look-up-words-in-the-word-dictionarythesaurus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>when do you use Vlookup and Hlookup ?</title>
		<link>http://learnexcel.org/blog/learn-excel-formulas/when-do-you-use-vlookup-and-hlookup/</link>
		<comments>http://learnexcel.org/blog/learn-excel-formulas/when-do-you-use-vlookup-and-hlookup/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 18:39:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Learn Excel Formulas]]></category>

		<guid isPermaLink="false">http://learnexcel.org/blog/learn-excel-formulas/when-do-you-use-vlookup-and-hlookup/</guid>
		<description><![CDATA[concise well explained answer please ! NEAR its not concise http://www.howtogeek.com/howto/13780/using-vlookup-in-excel/]]></description>
				<content:encoded><![CDATA[<p>concise well explained answer please !<br />
NEAR its not concise<br />
<br />http://www.howtogeek.com/howto/13780/using-vlookup-in-excel/</p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://learnexcel.org/blog/learn-excel-formulas/when-do-you-use-vlookup-and-hlookup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create VLOOKUP formula in excel?</title>
		<link>http://learnexcel.org/blog/learn-excel-formulas/how-to-create-vlookup-formula-in-excel/</link>
		<comments>http://learnexcel.org/blog/learn-excel-formulas/how-to-create-vlookup-formula-in-excel/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 18:38:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Learn Excel Formulas]]></category>

		<guid isPermaLink="false">http://learnexcel.org/blog/learn-excel-formulas/how-to-create-vlookup-formula-in-excel/</guid>
		<description><![CDATA[What is the most simple way to create a VLOOKUP formula in MS Excel? the best way is to type =vlookup in the cell (in excel) then it will guide to fill the informtion needed. or click on fx button the wizerd will guide you. click on help in it, the help file will show [...]]]></description>
				<content:encoded><![CDATA[<p>What is the most simple way to create a VLOOKUP formula in MS Excel?<br />
<br />the best way is to type =vlookup in the cell (in excel) then it will guide to fill the informtion needed. or click on fx button the wizerd will guide you. click on help in it, the help file will show you some example and explain the concept for you if you don&#8217;t know how does it work.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://learnexcel.org/blog/learn-excel-formulas/how-to-create-vlookup-formula-in-excel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What is the best book to buy for learning advance Excel functions like pivot tables, vlookups, macros, etc?</title>
		<link>http://learnexcel.org/blog/learn-excel-formulas/what-is-the-best-book-to-buy-for-learning-advance-excel-functions-like-pivot-tables-vlookups-macros-etc/</link>
		<comments>http://learnexcel.org/blog/learn-excel-formulas/what-is-the-best-book-to-buy-for-learning-advance-excel-functions-like-pivot-tables-vlookups-macros-etc/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 18:38:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Learn Excel Formulas]]></category>

		<guid isPermaLink="false">http://learnexcel.org/blog/learn-excel-formulas/what-is-the-best-book-to-buy-for-learning-advance-excel-functions-like-pivot-tables-vlookups-macros-etc/</guid>
		<description><![CDATA[I need to learn these functions and more to become an inventory analyst. I wouldn&#8217;t say that there is one book that covers everything. The closest to that would likely be the Excel (version of Excel) Inside Out book series. If you want to get the down and dirty basics quickly then the Plain &#38; [...]]]></description>
				<content:encoded><![CDATA[<p>I need to learn these functions and more to become an inventory analyst.<br />
<br />I wouldn&#8217;t say that there is one book that covers everything.  The closest to that would likely be the Excel (version of Excel) Inside Out book series.  If you want to get the down and dirty basics quickly then the Plain &amp; Simple series of books is great.  John Walkenbach&#8217;s Excel Bible would probably be the next closest for covering everything besides Microsofts Inside Out series.</p>
<p>For macros, John Walkenbach&#8217;s book series Excel Power Programming with VBA is the best to easily understand.  He also has some good books focused on just pivot tables or just Excel functions or just charts.  </p>
<p>If you really want to understand these topics well, you&#8217;re likely talking multiple books, not just 1.  The cover-all books do a pretty descent job covering most topics, but only just barely delve into macros, just enough to do something very very simple.  You really need a book devoted primarily to VBA and macros to understand macros well.</p>
<p>The help from the Object Browser in the Visual Basic Editor is also really good to study to learn VBA.  But you&#8217;ll understand that a lot better once you&#8217;ve programmed macros a descent bit.</p>

<!-- start wp-tags-to-technorati 1.02 -->

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://learnexcel.org/blog/learn-excel-formulas/what-is-the-best-book-to-buy-for-learning-advance-excel-functions-like-pivot-tables-vlookups-macros-etc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel macro emploi du temps</title>
		<link>http://learnexcel.org/blog/learn-excel-macros/excel-macro-emploi-du-temps/</link>
		<comments>http://learnexcel.org/blog/learn-excel-macros/excel-macro-emploi-du-temps/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 15:38:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Learn Excel Macros]]></category>
		<category><![CDATA[débutant]]></category>
		<category><![CDATA[emploi du temps]]></category>
		<category><![CDATA[Macro]]></category>

		<guid isPermaLink="false">http://learnexcel.org/blog/learn-excel-macros/excel-macro-emploi-du-temps/</guid>
		<description><![CDATA[Niveau débutant: Ce tutoriel explique comment créer une macro simple. D&#8217;autres vidéos sur agi67.fr. Duration : 0:3:12 Technorati Tags: débutant, emploi du temps, Macro]]></description>
				<content:encoded><![CDATA[<p><img src="http://i.ytimg.com/vi/fB-lL7dxng4/0.jpg" align="left">Niveau débutant: Ce tutoriel explique comment créer une macro simple. D&#8217;autres vidéos sur agi67.fr.</p>
<p>Duration : <b>0:3:12</b></p>
<p><span id="more-2216"></span><br /><iframe width="425" height="344" src="http://www.youtube.com/embed/fB-lL7dxng4?wmode=transparent" frameborder="0" allowFullScreen> </iframe></p>

<!-- start wp-tags-to-technorati 1.02 -->

<p class='technorati-tags'>Technorati Tags: <a class='technorati-link' href='http://technorati.com/tag/d%C3%A9butant' rel='tag' target='_self'>débutant</a>, <a class='technorati-link' href='http://technorati.com/tag/emploi+du+temps' rel='tag' target='_self'>emploi du temps</a>, <a class='technorati-link' href='http://technorati.com/tag/Macro' rel='tag' target='_self'>Macro</a></p>

<!-- end wp-tags-to-technorati -->
]]></content:encoded>
			<wfw:commentRss>http://learnexcel.org/blog/learn-excel-macros/excel-macro-emploi-du-temps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
