<?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>Microsoft Office tips &#187; admin</title>
	<atom:link href="http://msoffice-tips.com/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://msoffice-tips.com</link>
	<description>Do you want to improve you Office more efectivly?</description>
	<lastBuildDate>Fri, 29 Jan 2010 02:19:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to use Excel VLookup Function</title>
		<link>http://msoffice-tips.com/2010/01/28/how-to-use-excel-vlookup-function/</link>
		<comments>http://msoffice-tips.com/2010/01/28/how-to-use-excel-vlookup-function/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 02:19:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=247</guid>
		<description><![CDATA[As September approaches, I can count on a series of spreadsheet questions. One of the more popular Excel tutorial requests is how do you look up a value on one Excel worksheet and use it on another Excel worksheet. For example, you need to translate a product number into a product name. One of my [...]]]></description>
			<content:encoded><![CDATA[<p>As September approaches, I can count on a series of spreadsheet questions. One of the more popular Excel tutorial requests is how do you look up a value on one Excel worksheet and use it on another Excel worksheet. For example, you need to translate a product number into a product name. One of my favorite Excel functions is the VLOOKUP function and it can help with this task.</p>
<p>A recent case involved some voter registration data I needed to analyze. On one Excel spreadsheet, the voter’s party was listed as an alphanumeric value called &#8220;Pcode&#8221; and not the political party. This coding wasn&#8217;t intuitive. For example, “D” was for “American Independent Party”, but some thought it meant “Democratic Party”.</p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-VLookup-Function.png"><img class="alignnone size-full wp-image-248" title="Excel VLookup Function" src="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-VLookup-Function.png" alt="" width="418" height="250" /></a></p>
<p>How can your grab a value from a separate Excel list and insert it into your current calculation?  Vlookup or Hlookup is the main answer in Excel.</p>
<p>We&#8217;ll show you Vlookup since it&#8217;s the most commonly used of the two.</p>
<p>Start with a reference table (Excel calls this the table_array) &#8211; this is merely a small table (either part of a worksheet or on a separate worksheet) that has a list of paired values.  For example:</p>
<ul>
<li>Sales targets paired with commission rates.</li>
<li>Quantity purchased with discount rate</li>
<li>State with sales tax rate</li>
<li>Miles flown with frequent flyer points earned.</li>
</ul>
<p>Once you have that (relatively) fixed information, you can use Vlookup() to find the relevant part of the table and get the value you need:</p>
<ul>
<li>Lookup total sales and get the commission payable</li>
<li>Lookup quantity bought and get any discount that applies</li>
<li>Find the customers state and workout if sales tax is chargeable</li>
<li>From the air-miles work out how many points you&#8217;ll get.</li>
</ul>
<p>The VLookup  function is a member of the Lookup and Reference functions group available in Excel.  It is a very useful function particularly where you have a list of data and further information can be derived from that list by reference to a lookup table.  The following examples give a practical illustration of how VLookup can be used.</p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-VLookup-Function-21.jpg"><img class="alignnone size-full wp-image-250" title="Excel VLookup Function-2" src="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-VLookup-Function-21.jpg" alt="" width="500" height="219" /></a></p>
<h3>Overview</h3>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-VLookup-Function-4..gif"><img class="alignnone size-full wp-image-252" title="Excel VLookup Function-4." src="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-VLookup-Function-4..gif" alt="" width="394" height="278" /></a></p>
<p>VLookup(lookup_value, table_array, col_index_num, range_lookup) has 4 arguments:</p>
<ul type="disc">
<li><strong><span style="text-decoration: underline;">Lookup_value</span></strong> is the value you supply in your list, e.g Sales..  VLookup compares the lookup value with the values in column 1 of the lookup table array.  Lookup value is also called the &#8220;search&#8221; value.</li>
<li><strong><span style="text-decoration: underline;">Table_array</span></strong> is the address of the lookup table itself, e.g. $E$2:$F$5, (I use absolute addressing so when I fill down the VLookup formula, the table address doesn&#8217;t move &#8211; creating wrong answers).</li>
<li><strong><span style="text-decoration: underline;">Col_index_num</span></strong> specifies which column of the lookup table contains the data for use in our calculation, e.g. Comm.Rate% which is column 2 in the table.</li>
<li>Finally, the <strong><span style="text-decoration: underline;">range_lookup</span> value</strong> is a logical value (TRUE/FALSE) which determines whether VLookup returns an exact match or an approximate match.  More detail on the range lookup value further <a>on</a></li>
</ul>
<p>The first example uses some familiar Northwind data and shows a simple example of calculating sales commissions based on employee sales.  VLookup gives the commission rate to be applied to the employee&#8217;s sales results.</p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-VLookup-Function-3.jpg"><img class="alignnone size-full wp-image-251" title="Excel VLookup Function-3" src="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-VLookup-Function-3.jpg" alt="" width="500" height="219" /></a></p>
<p>The lookup table is the small list on the right &#8211; Min.Sales and Comm.Rate.  Vlookup always uses the first column of the lookup table as the reference for calculation, i.e. using Sales as the lookup value it compares Sales with Min.Sales and decides which Comm.Rate applies.</p>
<p>The Vlookup formula in cell C2 looks like this:</p>
<p>=<a>Vlookup</a>(B2,$E$2:$F$5,2,TRUE)*B2</p>
<p>The formula breaks down as follows:</p>
<ul>
<li>uses  B2 (sales) as the lookup value, (fairly straightforward),</li>
<li>we want to calculate sales commissions so our reference table array $E$2:$F$5 is the basis for that.</li>
<li>we want to grab the sales commission rate and that&#8217;s in the second column so we use the column index number 2 which means that VLookup will look in column 2 of the table array to return the corresponding commission rate.</li>
<li>We want to find the sales value, and range_lookup is TRUE.  VLookup searches column 1 of the table array with the lookup value.  It aims to find the highest value of column 1 that is less than or equal to the lookup value, i.e. Sales in column B.</li>
</ul>
<p>That last parameter, Range lookup, can be tricky.  There are three possibilities for this value.</p>
<ul type="disc">
<li>
<ol>
<li>TRUE  means VLookup will look for an approximate match</li>
<li>FALSE means VLookup will look for an exact match</li>
<li>value omitted means VLookup will look for an approximate match.</li>
</ol>
</li>
</ul>
<p>The smart play is to explicitly use TRUE or FALSE, until you are used to how it works.  How do these values work?</p>
<ul>
<li>FALSE, means an exact match, mainly used with text values.  VLookup simply looks down column 1 and looks for an exact match if it doesn&#8217;t find one it returns #N/A.</li>
<li>TRUE instructs VLookup to find an approximate match (it is also OK if it finds an exact match).  VLookup looks for the highest value that is less than or equal to the lookup value.</li>
</ul>
<blockquote dir="ltr"><p><strong>IMPORTANT:</strong> If range lookup is TRUE the first column of the table array needs to be sorted in ascending order, from small to large.  (Otherwise VLookup may return unexpected results).</p></blockquote>
<p>In our example Sales for Steven Buchanan is $22,000.  VLookup takes that value and goes down &#8220;Min.Sales&#8221; looking for an exact match, if there is no exact match (which there isn&#8217;t) VLookup looks for the largest value that is less than (or equal to) the lookup value.  In this case cell E3 is the largest value ($15,000) which is less than the lookup value ($22,000), therefore the VLookup function returns F3 which is a &#8220;Comm.Rate&#8221; of 10%.  Notice that the last term in our formula is *B2.  This multiplies the sales for each person by the commission rate found by VLookup.  Thus the commission for Steven B is $22,000 * 10% = $2,200.  If we then use the fill handle to copy the formula down to cell C10 we will have calculated the commissions for all the Northwind staff.</p>
<h2>Copying the VLOOKUP Function to Other Cells</h2>
<p>It doesn’t make sense to use VLOOKUP for one cell in your Excel spreadsheet. Instead, I want to copy the function to other cells in the same column.</p>
<p><em>To copy VLOOKUP to other column cells,</em></p>
<p>1. Click the cell containing the VLOOKUP arguments. In our example, this would be D2.</p>
<p>2. Grab the cell handle that displays in the lower right corner.</p>
<p>3. Left-click and drag down the cell handle to cover your column range.</p>
<p><strong><em>Note</em></strong><em>: If I hadn’t changed to absolute reference as mentioned in Rule 3, I would’ve seen my table array entry shift by one cell as we dragged down through the other cells.</em></p>
<p>VLOOKUP is a powerful Excel function that can leverage spreadsheet data from other sources. There are many ways you can benefit from this function. In this example, I used a 1:1 code translation, but you could also use it for group assignments. For example, I could assign state codes to a region such as CT, VT, and MA to a region called “New England”. And for the adventurous, you can use VLOOKUP in your formulas.</p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2010/01/28/how-to-use-excel-vlookup-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create Excel 3D Chart</title>
		<link>http://msoffice-tips.com/2010/01/28/how-to-create-excel-3d-chart/</link>
		<comments>http://msoffice-tips.com/2010/01/28/how-to-create-excel-3d-chart/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 12:03:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=236</guid>
		<description><![CDATA[To create Excel 3D Chart ,  first start Microsoft Excel and open an existing workbook that contains data that you would like to turn into a 3D chart,the data that a chart uses can be resides in a single worksheet, or use data that&#8217;s stored in other worksheets.
Excel 2007 has enhanced charting capabilities than the earlier [...]]]></description>
			<content:encoded><![CDATA[<p>To create <strong>Excel 3D Chart</strong> ,  first start Microsoft Excel and open an existing workbook that contains data that you would like to turn into a <strong>3D chart</strong>,the data that a chart uses can be resides in a single worksheet, or use data that&#8217;s stored in other worksheets.</p>
<p>Excel 2007 has enhanced charting capabilities than the earlier versions.It provides a variety of charting tools to customize the <strong>design</strong>, <strong>layout</strong>, and <strong>formatting </strong>of the chart. You can see a preview of how the various options would look by just pointing at them in the dialog box. And when your chart is exactly the way you want it, you can save it as a template to use again, in Excel or in other 2007 Office system programs such as Word 2007!!!</p>
<p><strong>How to Create Excel 3D Pie Chart</strong></p>
<p>Creating impressive looking pie charts is way too easy in Excel 2007. To create a Pie chart in Excel, you should first enter the numeric data for the chart on a worksheet. Then you can plot that data into a Pie Chartas detailed below:</p>
<ul>
<li>Select the data that you want to plot in the pie chart.</li>
<li>On the <strong>Insert </strong>tab, in the Charts group, click <strong>Pie</strong>.</li>
<li>Choose either a 2D chart type or a 3D Pie Chart, say, <strong>Pie in 3-D</strong></li>
</ul>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-3D-char.jpg"><img class="alignnone size-full wp-image-238" title="Excel-3D-char" src="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-3D-char.jpg" alt="" width="500" height="422" /></a></p>
<p>Click the <strong>Plot area</strong>.In a <strong>2-D chart</strong>, the Plot area is the area bounded by the axes, including all data series and in a <strong>3-D chart</strong>, it is the area bounded by the axes, including the data series, category names, tick-mark labels, and axis titles. This displays the Chart Tools, adding the <strong>Design</strong>, <strong>Layout</strong>, and<strong>Format </strong>tabs.</p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-3D-char-2.jpg"><img class="alignnone size-full wp-image-239" title="Excel-3D-char-2" src="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-3D-char-2.jpg" alt="" width="500" height="364" /></a></p>
<p>Once you have entered the data you want to display as a chart into a worksheet and decided which type of chart you require, you can create it with just a few mouse clicks. Use the following illustration to quickly create a chart on the current worksheet.</p>
<p>Open Excel 2007 and create a worksheet as illustrated below.</p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-3D-char-4.gif"><img class="alignnone size-full wp-image-240" title="Excel-3D-char-4" src="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-3D-char-4.gif" alt="" width="371" height="157" /></a></p>
<p><span style="font-size: small;"><strong>To create a chart</strong></span></p>
<ul>
<li>Click on any cell within the data containing the information that you wish to display as a chart, or highlight the exact data area that you wish to display as a chart.</li>
<li>On the <strong>Insert</strong> menu, in the <strong>Charts</strong> group, click the chart type you require. A gallery of thumbnail images for the related chart subtypes will appear.</li>
</ul>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-3D-char.gif"><img class="alignnone size-full wp-image-241" title="Excel-3D-char" src="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-3D-char.gif" alt="" width="311" height="89" /></a></p>
<ul>
<li>Click the required chart subtype to create the chart, or click <strong>All Chart Types</strong> to open the<strong>Insert Chart</strong> dialog box and choose from all available chart types.</li>
<li>When you have selected a subtype, a chart will be created as an object in the worksheet and <strong>Chart Tools</strong> will appear on the Ribbon incorporating Design, Layout, and Format tabs.</li>
<li>For example, when choose the &#8216;3-D Clustered Column&#8217; subtype, the chart created as follow:</li>
</ul>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-3D-char-2.gif"><img class="alignnone size-full wp-image-242" title="Excel-3D-char-2" src="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-3D-char-2.gif" alt="" width="492" height="302" /></a></p>
<p>Alternatively, click the <strong>Charts</strong> group <strong>Dialog Box Launcher</strong> to open the <strong>Insert Chart</strong>dialog box and see all the available chart types.</p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-3D-char-5.gif"><img class="alignnone size-full wp-image-243" title="Excel-3D-char-5" src="http://msoffice-tips.com/wp-content/uploads/2010/01/Excel-3D-char-5.gif" alt="" width="510" height="361" /></a></p>
<ul>
<li>You can also change the default chart type in the <strong>Insert Chart</strong> dialog box by selecting a chart type and clicking the <strong>Set as Default Chart</strong> button.</li>
</ul>
<p><strong>Note:</strong> To quickly create a chart of the selected data (based on the default chart type) as an object in the current worksheet, press <strong>Alt+F1</strong>. To create a chart of the selected data as a new sheet, press <strong>F11</strong></p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2010/01/28/how-to-create-excel-3d-chart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to  insert video into powerpoint</title>
		<link>http://msoffice-tips.com/2009/12/15/how-to-insert-video-into-powerpoint/</link>
		<comments>http://msoffice-tips.com/2009/12/15/how-to-insert-video-into-powerpoint/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 03:18:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PowerPoint tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=228</guid>
		<description><![CDATA[There are three ways on how to  insert video into powerpoint:
Direct Play Video 
This broadcast method is to pre-prepared video file as a movie file directly into the slide, the method is the simplest, most intuitive way, using this method to video file into the slide, after, PowerPoint only a simple [pause] and [continue to [...]]]></description>
			<content:encoded><![CDATA[<p>There are three ways on <strong>how to  insert video into powerpoint</strong>:</p>
<p><strong>Direct Play Video </strong></p>
<p>This broadcast method is to pre-prepared video file as a movie file directly into the slide, the method is the simplest, most intuitive way, using this method to video file into the slide, after, PowerPoint only a simple [pause] and [continue to play] control, and no other action buttons for more options. So this method is particularly suitable for PowerPoint for beginners, the following are the specific steps:</p>
<p>1. Run the PowerPoint program, open the video files need to insert the slide.</p>
<p>2. Move your mouse to the menu bar, click one of the &#8220;Insert&#8221; option from the drop-down menu to open the implementation of the &#8220;Insert a movie file&#8221; command.</p>
<p>3. In the ensuing pop-up file selection dialog will be pre-prepared video file selected, and click [Add] button, so that video files can be inserted into the slide.</p>
<p>4. To use the mouse to select video file, and move it to the appropriate location, and then click directly on-screen prompts [Play] button to play video, or select the auto-play mode.</p>
<p>5. During playback, you can move the mouse into the video window, click click, the video will be able to pause playback. If you want to continue playing, and then mouse click click.</p>
<p><strong>Insert the control to play video </strong></p>
<p>This method is to insert a video file into the slide as a control, and then by modifying the control properties to achieve the purpose of playing video. Using this method, and a wide choice of operation buttons, the player process can be completely on my own control, more convenient and flexible. This method is more suitable for PowerPoint courseware pictures, text, video, on the same page situation.</p>
<p>1. Run the PowerPoint program, open the video files need to insert the slide.</p>
<p>2. Move your mouse to the menu bar, click one of the &#8220;View&#8221; option, and from an open drop-down menu select &#8220;Control Toolbox&#8221;, and then from the lower-level menu, select [Other Controls] button.</p>
<p>3. In the following control options open interface, select &#8220;Windows Media Player&#8221; option, and then move the mouse to PowerPoint editing area, draw a rectangle the right size, then the region will automatically be turned into Windows Media Player playback interface .</p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2009/12/how-to-insert-video-into-powerpoint.jpg"><img class="alignnone size-full wp-image-230" title="how to insert video into powerpoint" src="http://msoffice-tips.com/wp-content/uploads/2009/12/how-to-insert-video-into-powerpoint.jpg" alt="how to insert video into powerpoint" width="300" height="234" /></a></p>
<p>4. To use the mouse to select the player interface, and then right-click the shortcut from the pop-up menu, select &#8220;Properties&#8221; command to open the media player interface, the &#8220;Properties&#8221; window.</p>
<p>5. In the &#8220;Properties&#8221; window, in the &#8220;File Name&#8221; entry is set at the correct input needed in the video file is inserted into the slide path and file name details. So that when you open the slide, you can through the [Play] control button to play the specified collection of videos.</p>
<p>6. In order to insert a video file to better organize together with the slides, you can also modify the &#8220;Properties&#8221; set the interface control bar, play, and video properties of the slider bar position.</p>
<p>7. During playback, you can through the media player in the [player], [Stop], [pause] and [adjust volume] and so the video control buttons.</p>
<p><strong>Insert Object to play video </strong></p>
<p>This method is the video file as an object inserted into the slide, with the above two methods is different is that it can be arbitrary choice of the actual needs of broadcast video clips, and then play. Implementation steps are:</p>
<p>1. Open the need to insert a video file of the slides, click the &#8220;Insert / Object&#8221; command, open the &#8220;Insert Object&#8221; dialog box.</p>
<p>2. Select the &#8220;New&#8221; option, then the corresponding &#8220;object type&#8221; is set column at selected &#8220;video clip&#8221; option, click the [OK] button .</p>
<p>3. PowerPoint automatically switch to the video property state, the implementation of the &#8220;Insert Clip / Windows Video&#8221; command, would be pre-prepared video files inserted into the slide.</p>
<p>4. Implementation of the &#8220;Edit / Options&#8221; command, open the option box, set the video in which the need for loop, or whether you want to back after playing and so on, click [OK] to return to the video property settings interface.</p>
<p>5. Click the toolbar video [entry point] button, and [a point] button to reset the video file playback starting point and end point, so as to achieve arbitrary choices need to play video clips purpose.</p>
<p>6. With the mouse left-click a blank area of the interface is set, you can withdraw from the video settings interface, and thus return to the slide editor of the state. You can also use the Preview command, check the video editing effects.</p>
<p>After doing that you can  insert video into powerpoint.</p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/12/15/how-to-insert-video-into-powerpoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to insert pdf into word document</title>
		<link>http://msoffice-tips.com/2009/12/15/how-to-insert-pdf-into-word-document/</link>
		<comments>http://msoffice-tips.com/2009/12/15/how-to-insert-pdf-into-word-document/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 02:57:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Word tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=215</guid>
		<description><![CDATA[1 How to insert pdf text into word document?
If you have your PDF converted to Word, it’s pretty simple job now!just convert pdf into word and you cant past from the word file.Here is a website http://www.pdftoword.com/you can convert you pdf into word freely.

The first step (Step1) Open you want to convert PDF files;
The second [...]]]></description>
			<content:encoded><![CDATA[<p>1 <strong>How to insert pdf text into word document</strong>?</p>
<p>If you have your PDF converted to Word, it’s pretty simple job now!just convert pdf into word and you cant past from the word file.Here is a website <a href="http://www.pdftoword.com/">http://www.pdftoword.com/</a>you can convert you pdf into word freely.<img class="alignnone size-full wp-image-216" title="How to insert pdf into word document" src="http://msoffice-tips.com/wp-content/uploads/2009/12/How-to-insert-pdf-into-word-document.jpg" alt="How to insert pdf into word document" width="586" height="332" /></p>
<ol>
<li>The first step (Step1) Open you want to convert PDF files;</li>
<li>The second step (Step2) Select will be converted to the format, you can select DOC or RTF;</li>
<li>The third step (Step3) Enter your e-mail, the website convert the file and sent to your specified e-mail . After such a simple operation, PDF conversion is complete.</li>
</ol>
<p>after that,you can insert your pdf  into word document freely.</p>
<p>2 <strong>How to insert pdf image into word document</strong></p>
<p>some pdf document is image and you cann&#8217;t convert it into text,so just Use the &#8220;Snapshot Tool&#8221; in Adobe Reader,select the area of the image that you wish to import into your Microsoft Word document：</p>
<div id="attachment_219" class="wp-caption alignnone" style="width: 522px"><a href="http://msoffice-tips.com/wp-content/uploads/2009/12/How-to-insert-pdf-into-word-document-2.gif"><img class="size-full wp-image-219 " title="How to insert pdf into word document" src="http://msoffice-tips.com/wp-content/uploads/2009/12/How-to-insert-pdf-into-word-document-2.gif" alt="How to insert pdf into word document" width="512" height="384" /></a><p class="wp-caption-text">select the area of the image</p></div>
<div id="attachment_220" class="wp-caption alignnone" style="width: 522px"><a href="http://msoffice-tips.com/wp-content/uploads/2009/12/How-to-insert-pdf-into-word-document-3.gif"><img class="size-full wp-image-220 " title="How to insert pdf into word document" src="http://msoffice-tips.com/wp-content/uploads/2009/12/How-to-insert-pdf-into-word-document-3.gif" alt="How to insert pdf into word document" width="512" height="384" /></a><p class="wp-caption-text">Paste image into Word Document</p></div>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2009/12/How-to-insert-pdf-into-word-document-4.gif"><img class="alignnone size-full wp-image-221" title="How to insert pdf into word document" src="http://msoffice-tips.com/wp-content/uploads/2009/12/How-to-insert-pdf-into-word-document-4.gif" alt="How to insert pdf into word document" width="518" height="389" /></a></p>
<p>Once the snapshot of your  PDF image has been inserted into  Word Document, use the resize and move handles which surround the image to shrink, expand or move the digital map image as needed, and you&#8217;re all done!</p>
<p>The final method is to use a link, taking advantage of the HTML editor options within Microsoft Word to <strong>insert pdf into word document</strong>.</p>
<p>You can create a link in a Word document by selecting some text, right clicking and selecting <strong>Hyperlink&#8230; </strong>then browsing for the file you’re looking for. Give it a display name and click OK to complete.</p>
<p>Alternatively, you could save a document with an Adobe PDF file in it, embedded as a “Contents Package” within Microsoft Word. To do this, browse to where the document is saved, copy it, and then switch back to your open document and paste the PDF file into Microsoft Word.</p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/12/15/how-to-insert-pdf-into-word-document/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>very funny ppt downloads</title>
		<link>http://msoffice-tips.com/2009/12/13/very-funny-ppt-downloads/</link>
		<comments>http://msoffice-tips.com/2009/12/13/very-funny-ppt-downloads/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 09:40:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PowerPoint tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=196</guid>
		<description><![CDATA[here are some funny pets picture and a very funny ppt with all the pictures.







here is the very funny ppt downloads.

]]></description>
			<content:encoded><![CDATA[<p>here are some funny pets picture and a very funny ppt with all the pictures.</p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt.ppt"><img class="size-full wp-image-198 alignnone" title="very funny ppt downloads" src="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt-downloads-81.jpg" alt="very funny ppt downloads" width="500" height="375" /></a></p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt.ppt"><img class="alignnone size-full wp-image-205" title="very funny ppt downloads" src="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt-downloads-7.jpg" alt="very funny ppt downloads" width="500" height="375" /></a></p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt.ppt"><img class="alignnone size-full wp-image-203" title="very funny ppt downloads" src="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt-downloads-5.jpg" alt="very funny ppt downloads" width="500" height="375" /></a></p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt.ppt"><img class="alignnone size-full wp-image-202" title="very funny ppt downloads" src="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt-downloads-4.jpg" alt="very funny ppt downloads" width="500" height="375" /></a></p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt.ppt"><img class="alignnone size-full wp-image-201" title="very funny ppt downloads" src="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt-downloads-3.jpg" alt="very funny ppt downloads" width="500" height="375" /></a></p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt.ppt"><img class="alignnone size-full wp-image-200" title="very funny ppt downloads" src="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt-downloads-2.jpg" alt="very funny ppt downloads" width="500" height="375" /></a></p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt.ppt"><img class="alignnone size-full wp-image-199" title="very funny ppt downloads" src="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt-downloads.jpg" alt="very funny ppt downloads" width="500" height="375" /></a></p>
<p>here is the very funny ppt downloads.</p>
<p><a href="http://msoffice-tips.com/wp-content/uploads/2009/12/very-funny-ppt.ppt"><img class="alignnone size-full wp-image-209" title="download-icon1" src="http://msoffice-tips.com/wp-content/uploads/2009/12/download-icon1.jpg" alt="download-icon1" width="300" height="288" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/12/13/very-funny-ppt-downloads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to creating charts in excel</title>
		<link>http://msoffice-tips.com/2009/12/10/how-to-creating-charts-in-excel/</link>
		<comments>http://msoffice-tips.com/2009/12/10/how-to-creating-charts-in-excel/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 13:21:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>
		<category><![CDATA[Featured Articles]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=189</guid>
		<description><![CDATA[Microsoft Excel is a powerful tool that allows you to take data from your worksheet and position the chart within the worksheet. This type of chart is known as an Embedded Chart.
The first step for creating your chart is to select the data that you want to chart. Ensure that you select the labels for [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft Excel is a powerful tool that allows you to take data from your worksheet and position the chart within the worksheet. This type of chart is known as an Embedded Chart.</p>
<p>The first step for creating your chart is to select the data that you want to chart. Ensure that you select the labels for the rows and column. Don&#8217;t select any invalid data such as empty cells or cells that you don&#8217;t want in your chart.</p>
<p>Once you have selected the data the next step is to choose the type of chart that you require. Microsoft Excel provides a whole range of chart types such as an Area Chart, Bar Chart, Scatter Chart, Column Chart, Pie Chart, Pyramid chart and many more. To choose a different chart type choose the Chart Type button and click on the down arrow to the right of the button to bring out the Chart drop down box.</p>
<p>Excel essentially creates a chart from the data selected and the chart will be placed on top of the data. Once the chart is created, the chart will have eight handles, which is essentially eight small square boxes located at each key point on the chart.</p>
<p>To select a chart, click once on the chart with your left mouse button. To change the chart type at any time, select the chart and choose a different type from the Chart Type button.</p>
<p>some tips on How to creating charts in excel:</p>
<ol>
<li>Amongst other goals, charts should tell stories. Charts should tell visual stories that describe patterns and trends in the data.</li>
<li>Good charting should give the viewer the greatest number of ideas in the shortest time with the least ink in the smallest space.</li>
<li>The purpose of formatting a chart is to make the chart easier for the viewer to understand. Too little formatting can leave a chart ambiguous.</li>
<li>Charting and graphing can take large sets of data and help to uncover patterns, trends, or to reveal relationships between data sets; this in turn can help to make business decisions.</li>
<li>Embedded Charts (on top of a sheet) are useful when you have a dynamic data set and want to see the chart change as the data changes and Chart Sheets are useful when you are printing or want to use the chart for a presentation.</li>
<li>Bar charts compare values across categories in a horizontal orientation. Values are indicated by the length of the bars. Column charts compare values across categories in a vertical orientation. Values are indicated by the length of the columns. Bar charts tend to emphasize differences better then a Column chart.</li>
<li>If you want to emphasize a trend in data points over time it is best to use a Line chart; whereas if you want to emphasize the difference between data points it is better to use a Column or Bar chart.</li>
<li>The XY (Scatter) chart plots numeric values on both the X- and Y-axes based on the value of the data (whereas a line chart plots numeric values on one axis and category labels equidistantly on the other axis).</li>
<li>A Line chart should be used instead of a XY (Scatter) chart when comparing sets of numerical data on just one axis. An XY (Scatter) should be used instead of a line chart when comparing sets of numerical data on two axes.</li>
<li>When making a pie chart, it is mandatory that you NOT include the total as one of the pie slices. The whole pie together is the total.</li>
<li>A pie chart with 30 slices can be cluttered and confusing. One solution is to make a Pie of Pie chart.</li>
<li>3-D Pie charts are misleading because they distort the pie proportions.</li>
<li>Stacked Area and Line charts can be misleading because they can give the impression that each line represents the actual values in the data series.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/12/10/how-to-creating-charts-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Astonishing!3D racing game hiden in EXCEL</title>
		<link>http://msoffice-tips.com/2009/12/07/3d-racing-game-hiden-in-excel/</link>
		<comments>http://msoffice-tips.com/2009/12/07/3d-racing-game-hiden-in-excel/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 03:18:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=185</guid>
		<description><![CDATA[
open Excel to open a new file after casually, it would be &#8220;Save as Web images&#8221;, the press release and then will add interactive features tick, save the file as 2000.htm.
 in IE, open 2000.htm, you should see a spreadsheet appeared on the website of the Central.
find the first 2000 rows, WC column. The first [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>open Excel to open a new file after casually, it would be &#8220;Save as Web images&#8221;, the press release and then will add interactive features tick, save the file as 2000.htm.</li>
<li> in IE, open 2000.htm, you should see a spreadsheet appeared on the website of the Central.</li>
<li>find the first 2000 rows, WC column. The first line of the 2000 selection, re-use Tab key to highlight the first column so that WC is the role of state (more than a few TAB will move to the WC column, 2000/WC grid will be converted to white).</li>
<li>while holding down Shift + Crtl + Alt and click the top left of the Office logo. (Upper left, where the red circle)</li>
<li> began playing the game.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/12/07/3d-racing-game-hiden-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set the level of alignment in Word2003 document</title>
		<link>http://msoffice-tips.com/2009/11/25/how-to-set-the-level-of-alignment-in-word2003-document/</link>
		<comments>http://msoffice-tips.com/2009/11/25/how-to-set-the-level-of-alignment-in-word2003-document/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 00:57:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Word tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=172</guid>
		<description><![CDATA[Word2003 document using the editing process, the alignment of the paragraph directly affect Word document layout effects.  Word2003 document paragraph alignment, including &#8220;Horizontal Alignment&#8221; and &#8220;vertical alignment&#8221; in two ways, where &#8220;the level of alignment&#8221; to decide the paragraph on the page horizontally arranged on the way, and &#8220;vertical alignment&#8221; is the decision a Word2003 [...]]]></description>
			<content:encoded><![CDATA[<p>Word2003 document using the editing process, the alignment of the paragraph directly affect Word document layout effects.  Word2003 document paragraph alignment, including &#8220;Horizontal Alignment&#8221; and &#8220;vertical alignment&#8221; in two ways, where &#8220;the level of alignment&#8221; to decide the paragraph on the page horizontally arranged on the way, and &#8220;vertical alignment&#8221; is the decision a Word2003 document on the arrangement of the vertical direction.</p>
<p>Word2003 document paragraph &#8220;Horizontal Alignment&#8221; control of the paragraphs of the arrangement of the Chinese Bank, paragraph &#8220;Horizontal Alignment&#8221; including &#8220;Justify&#8221;, &#8220;Left&#8221;, &#8220;Right&#8221;, &#8220;center right Qi &#8220;and&#8221; decentralized alignment &#8220;five ways, which are detailed as follows:</p>
<p> 1.  Justify: in addition to the last line of text in the paragraph, the remaining lines of text left and right ends of left and right borders of each document as a benchmark to Justify. This alignment is the most commonly used Word2003 document, and it is the system default alignment.</p>
<p> 2.  Left: each line of text in all paragraphs to the left margin of the document as a benchmark Word2003 left aligned.   However, if the document is available in English words, the &#8220;Left&#8221; will be making the English text on the right sector, mixed, then if you are using &#8220;Justify&#8221; approach, then on the right sector can be aligned.</p>
<p>3.  Right-aligned: text in Word2003 documents have been aligned on the right sector, while the left border is irregular, the general part of the article dated more than a &#8220;right-aligned&#8221; approach.</p>
<p>4.  Align: Text Word2003 documents in the middle of the left and right borders, the general title of the article more than a &#8220;center alignment&#8221; approach.</p>
<p> 5.  Scattered alignment: the paragraph that all lines of text around a document in Word2003 document along the left and right ends of each aligned two boundaries.</p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/11/25/how-to-set-the-level-of-alignment-in-word2003-document/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to use excel sort</title>
		<link>http://msoffice-tips.com/2009/10/01/how-to-use-excel-sort/</link>
		<comments>http://msoffice-tips.com/2009/10/01/how-to-use-excel-sort/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 13:33:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>
		<category><![CDATA[Featured Articles]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=161</guid>
		<description><![CDATA[Excel sort is a very simple use of Microsoft EXCEL. sorting is a fundamental function of EXCEL, this article introduce several ways of excel sort method for you. When you face a lot of data in you excel sheets, if the data isn’t well sorted, you can’t effective edit it. In all recent versions of [...]]]></description>
			<content:encoded><![CDATA[<p>Excel sort is a very simple use of Microsoft EXCEL. sorting is a fundamental function of EXCEL, this article introduce several ways of excel sort method for you. When you face a lot of data in you excel sheets, if the data isn’t well sorted, you can’t effective edit it. In all recent versions of Excel, each sheet in your workbook can contain up to 65,536 rows of information. so excel sort is import for your excel use. Excel provides you some quick ways to make it easier to find and sort your data.</p>
<ol>
<li>Excel Sort by One Column</li>
<li>Excel Sort by Two or Three Columns</li>
<li>Excel Using the Sort Buttons</li>
<li>Excel Sort by Four or More Columns</li>
</ol>
<p>Imagine such a excel workbook with four <span style="color: #000000;">Columns</span> to sort.</p>
<div id="attachment_162" class="wp-caption alignnone" style="width: 556px"><img class="size-full wp-image-162" title="excel-sort-sorting" src="http://msoffice-tips.com/wp-content/uploads/2009/10/excel-sort-sorting.jpg" alt="excel-sort" width="546" height="786" /><p class="wp-caption-text">excel-sort</p></div>
<p>Notice that cells A2 to E49 are selected, skipping the first row. When you have placed headings into your columns, Excel does not include them in the sort because if it did your headings would end up being sorted as data and placed elsewhere in the table.</p>
<h2><span><span style="font-family: Arial,Helvetica,sans-serif; color: #336600; font-size: small;">Sort            by One Column</span></span></h2>
<p>Now, to open the Sort window, from the menu bar, choose Data | Sort. You&#8217;ll get a window similar to the one next.</p>
<div id="attachment_163" class="wp-caption alignnone" style="width: 283px"><img class="size-full wp-image-163" title="excel-sort-sorting-2" src="http://msoffice-tips.com/wp-content/uploads/2009/10/excel-sort-sorting-2.jpg" alt="excel-sort" width="273" height="289" /><p class="wp-caption-text">excel-sort</p></div>
<p>I&#8217;ll go over each part of the Sort window:</p>
<ul type="disc">
<li><strong>&#8220;Sort by&#8221;: </strong>By which column would you like      to sort your data? Excel lets you support by up to three different fields,      in the order you specify. For example, in your budget spreadsheet, you      might sort by Department, and then, for each department, by Category, and      then by Date. This would show you, for each department, a list of      expenditures for each category, sorted by date.</li>
<li><strong>Ascending, Descending: </strong>Do you want to sort from big to      small, or from small to big? From A to Z, or from Z to A? Choose Ascending      to sort from A to Z (or from 0 to 9, or from January to December). Choose      Descending to sort from Z to A (or from 9 to 0, or from December to      January).</li>
<li><strong>My data range has:</strong> Your choices here are &#8220;Header      row&#8221; and &#8220;No header row&#8221;. I indicated earlier that you      should attempt to use a header row whenever you can. However, sometimes      Excel gets confused about your data and can&#8217;t tell that you have a header      row. If this happens when you open the Sort window, the &#8220;No header      row&#8221; option is selected. If this happens to you, just select the &#8220;Header      row&#8221; option to get Excel back on track.</li>
<li><strong>Options:</strong> Personally, I&#8217;ve never had a      need to make use of the advanced sorting options offered through the      Options button. For any normal sorting operation, you will not need to      modify sort options. If you like, explore this area, though. One of the      options there changes the sorting from columns to rows, so you could sort      left-to-right instead of top-to-bottom, if you wanted.</li>
</ul>
<h2><span><span style="font-family: Arial,Helvetica,sans-serif; color: #336600; font-size: small;">Sort            by Two or Three Columns</span></span></h2>
<ul>
<li>Select <strong><span style="color: #0000cc;">all the cells</span></strong> in the              list.</li>
<li>Choose Data&gt;Sort</li>
<li>From the <em>Sort by</em> dropdown, select the first column you want              to sort.</li>
<li>Select to sort in <em>Ascending</em> or <em>Descending</em> order</li>
<li>From the <em>Then by</em> dropdown, select the second column you want              to sort.</li>
<li>Select to sort in <em>Ascending</em> or <em>Descending</em> order</li>
</ul>
<div id="attachment_164" class="wp-caption alignnone" style="width: 283px"><img class="size-full wp-image-164" title="excel-sort-sorting-3" src="http://msoffice-tips.com/wp-content/uploads/2009/10/excel-sort-sorting-3.jpg" alt="excel-sort" width="273" height="289" /><p class="wp-caption-text">excel-sort</p></div>
<p>The result of this sorting operation is shown below.</p>
<div id="attachment_165" class="wp-caption alignnone" style="width: 479px"><img class="size-full wp-image-165" title="excel-sort-sorting-4" src="http://msoffice-tips.com/wp-content/uploads/2009/10/excel-sort-sorting-4.jpg" alt="excel-sort" width="469" height="851" /><p class="wp-caption-text">excel-sort</p></div>
<h4>The fast way to use excel sort</h4>
<p>Using the sort window is all well and good, but what if you just want to sort by a single column? Perhaps you have data in no particular order, and you just want to sort it by date and be done with it. Excel provides with you a quick way to handle these super simple sorts. Take a look at Excel&#8217;s shortcut toolbar. A little more than two thirds of the way across the toolbar, notice two buttons: one is labels AZ with a down arrow and another ZA with an up arrow.</p>
<p><img class="alignnone size-full wp-image-167" title="excel-sort-sorting-7" src="http://msoffice-tips.com/wp-content/uploads/2009/10/excel-sort-sorting-7.jpg" alt="excel-sort-sorting-7" width="548" height="49" /></p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/10/01/how-to-use-excel-sort/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Use VBA to filter containing same words in Excel</title>
		<link>http://msoffice-tips.com/2009/09/13/use-vba-to-filter-containing-same-words-in-excel/</link>
		<comments>http://msoffice-tips.com/2009/09/13/use-vba-to-filter-containing-same-words-in-excel/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 11:14:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=157</guid>
		<description><![CDATA[In my Excel there is a column, say, column A, where all the cells are text string such as company names. My task is to filter all the rows where the cells in column A contain the same company names. However, my problem is the company names was originally entered from different sources therefore for [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>In my Excel there is a column, say, column A, where all the cells are text string such as company names. My task is to filter all the rows where the cells in column A contain the same company names. However, my problem is the company names was originally entered from different sources therefore for the same company it may be entered in different forms, such as for company ABC, it might be entered like ABC CO, ABC PTY LTD, or COMPANY ABC. There are also many other companies entered with the same problem. What I need to do is to find any word in Column A that shows up twice or more and filter all the rows that contains such cells in Column A.</p></blockquote>
<p>Use VBA to filter containing same words in Excel</p>
<p>Use wildcards</p>
<p>the column A must have column heading in A1<br />
click data=filter-autofilter<br />
click the arrow in column A heading<br />
click custom<br />
left hand side window choose &#8220;equal to&#8221;<br />
in the right hand side window type<br />
*ABC*<br />
click ok<br />
do you get what you want.<br />
you can copy the filtered data anywhere</p>
<p>to remove filter click again data filter autofitler</p>
<p>* is the sign of wild card<br />
the two * on both sides indicates any other characters or numbers before and after.<br />
wildcards can be used only for some functins in excel</p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/09/13/use-vba-to-filter-containing-same-words-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Substitute conditional IF function in Excel</title>
		<link>http://msoffice-tips.com/2009/09/13/substitute-conditional-if-function-in-excel/</link>
		<comments>http://msoffice-tips.com/2009/09/13/substitute-conditional-if-function-in-excel/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 11:07:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=150</guid>
		<description><![CDATA[I used conditional IF to write my formulas but when my table increase in size, it became many IF statements in a cell.
I tried to replace IF with lookup function but some how I got so many ERR.
Can someone write me the formulas to solve my issue?
Here is the example:
It can be a row or [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>I used conditional IF to write my formulas but when my table increase in size, it became many IF statements in a cell.<br />
I tried to replace IF with lookup function but some how I got so many ERR.<br />
Can someone write me the formulas to solve my issue?</p>
<p>Here is the example:<br />
It can be a row or column but let assume it is a row A1, B1, C1, etc.<br />
Ie. A1 = -25, B1 = 0, and C1 = 31.</p>
<p>We have another row consist of A7 to AA7 for example.</p>
<p>Now we want to search through A7 to AA7 to find a value between A1 and B1(between -25 to 0), B1 and C1 (between 0 to 31) etc&#8230;<br />
If it does found, it will display the found value in a cell in question. </p></blockquote>
<p>You did not give complete informational. If a cell in range A1:AA77 is between A1 and B1 what should I do<br />
quote<br />
If it does found, it will display the found value in a cell in question.<br />
unquote<br />
what is meant by &#8220;display&#8221; and &#8220;cell in question&#8221;</p>
<p>tell me this<br />
1.suppose F7 is found to be between a1 and B1 what should I do???????<br />
2. suppose more than one cell in A7:AA7 which are between a1 and b1 what should I do with all these cells</p>
<p>the macro I have given below will find the cell in A7:AA7 and give its address.</p>
<p>It will continue to loop with all the cells in A1:AA7 and<br />
then loop next<br />
again start finding out whether any cell in A7:AA7 is betwen B1 and C1 and so on till all the cells are exhausted<br />
You modify the macro to suit ou.</p>
<div class="codecolorer-container vb default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br /></div></td><td><div class="vb codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #000080;">Sub</span> test()<br />
<span style="color: #000080;">Dim</span> rng <span style="color: #000080;">As</span> Range, c <span style="color: #000080;">As</span> Range, rng1 <span style="color: #000080;">As</span> Range, c1 <span style="color: #000080;">As</span> Range<br />
<span style="color: #000080;">Dim</span> x1, x2<br />
<span style="color: #000080;">With</span> Worksheets(<span style="color: #800000;">&quot;sheet1&quot;</span>)<br />
<span style="color: #000080;">Set</span> rng = Range(.Range(<span style="color: #800000;">&quot;a1&quot;</span>), .Range(<span style="color: #800000;">&quot;a1&quot;</span>).<span style="color: #000080;">End</span>(xlToRight)).Offset(0, -1)<br />
<span style="color: #000080;">For</span> <span style="color: #000080;">Each</span> c <span style="color: #000080;">In</span> rng<br />
x1 = c.Value<br />
x2 = c.Offset(0, 1).Value<br />
x1 = WorksheetFunction.Min(x1, x2)<br />
x2 = WorksheetFunction.Max(x1, x2)<br />
<span style="color: #000080;">Set</span> rng1 = .Range(<span style="color: #800000;">&quot;a7:aa7&quot;</span>)<br />
<span style="color: #000080;">For</span> <span style="color: #000080;">Each</span> c1 <span style="color: #000080;">In</span> rng1<br />
<span style="color: #000080;">If</span> c1 &gt;= x1 <span style="color: #000080;">And</span> c1 &lt;= x2 <span style="color: #000080;">Then</span><br />
MsgBox c1.Address<br />
<span style="color: #000080;">End</span> <span style="color: #000080;">If</span><br />
<span style="color: #000080;">Next</span> c1<br />
<span style="color: #000080;">Next</span> c<br />
<span style="color: #000080;">End</span> <span style="color: #000080;">With</span><br />
<span style="color: #000080;">End</span> <span style="color: #000080;">Sub</span></div></td></tr></tbody></table></div>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/09/13/substitute-conditional-if-function-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using excel if function with data validation</title>
		<link>http://msoffice-tips.com/2009/09/13/using-excel-if-function-with-data-validation/</link>
		<comments>http://msoffice-tips.com/2009/09/13/using-excel-if-function-with-data-validation/#comments</comments>
		<pubDate>Sun, 13 Sep 2009 11:06:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=147</guid>
		<description><![CDATA[i am trying to make an if statement that accomplishes something like, If c1=b1 then d1 = pick a choice from the data validation list(drop down list) that is from e1 to e5. else pick a choice from the data validation list(drop down list) that is from f1 to f5.
i am new to running macros [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>i am trying to make an if statement that accomplishes something like, If c1=b1 then d1 = pick a choice from the data validation list(drop down list) that is from e1 to e5. else pick a choice from the data validation list(drop down list) that is from f1 to f5.</p>
<p>i am new to running macros in excel. pls advise how i need to insert a macro for a particular cell and then copy it to the other cells below it i.e for d2,d3..etc to chk for c2,c3,..etc</p></blockquote>
<p>Am not sure whether I have understood your question correctly<br />
according to me no need of a macro </p>
<p>you have validation in the cells E1 to E5 and also F1 to F5</p>
<p>type the following formula in D1<br />
=IF(C1=B1,E1,F1)<br />
if there is not entry in E1 or F1 (that is if you have not used the validation) then D1 will be zero<br />
once you choose a validation is used to enter a value in E1 or F1 then D1 will change accordingly. try some experiments</p>
<p>copyp D1 down upto D5.</p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/09/13/using-excel-if-function-with-data-validation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The use of Google documents Excel chart real-time update</title>
		<link>http://msoffice-tips.com/2009/08/18/the-use-of-google-documents-excel-chart-real-time-update/</link>
		<comments>http://msoffice-tips.com/2009/08/18/the-use-of-google-documents-excel-chart-real-time-update/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 04:19:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=144</guid>
		<description><![CDATA[For a lot of work to do or write Financial Financial blog site, and friends often travel, in order to chart out the form to update the blog (or unit website OA) content will not be easy: the lack of professional software greatly restricted their work. If the chart can be automatically updated in real-time [...]]]></description>
			<content:encoded><![CDATA[<p>For a lot of work to do or write Financial Financial blog site, and friends often travel, in order to chart out the form to update the blog (or unit website OA) content will not be easy: the lack of professional software greatly restricted their work. If the chart can be automatically updated in real-time synchronization, and that nice! Then think of the ongoing network crazy popular online office system, after some pondering found &#8220;Google documents&#8221; to achieve this feature entirely.</p>
<p>Services actually used Google documents the operation of this function is very simple:</p>
<p>The first step: in the IE browser to open and log in Google documents (Web site), in the event of the Google interface in the implementation of the document &#8220;New → Spreadsheet&#8221; command to open a blank spreadsheet.</p>
<p>Step two: In a blank spreadsheet to input data to generate charts, if relevant data already stored in the local computer in the Excel document, then open the Excel file can then select the relevant data, in the Google document editor window At the same time, press &#8220;Ctrl + V&#8221; to paste it to the window.</p>
<p>The third step: in the Google document editor window, select the relevant cell, click the upper right corner of the screen &#8220;Insert Gadget&#8221; button in the &#8220;Add gadgets&#8221; dialog box, select the type of tools they need, we have to choose is, of course, &#8220;chart&#8221; of the relevant type of chart, such as I have chosen is the classic &#8220;bar&#8221;, click on its under the &#8220;add to spreadsheet&#8221; button.</p>
<p>Step four: in the subsequent emergence of the &#8220;Edit&#8221; dialog box to confirm the scope of the data, and set whether or not to use options such as 3D stereo effect, and finally press the &#8220;Application and Close&#8221; button to complete the work to insert the chart.</p>
<p>Step five: just insert a closer look at their own chart of the 3D feel is cool? Would like it posted to a blog or website is also very simple, we do not need more do not need to upload a screenshot, just click the upper right corner of the chart of the drop-down box triangle drop-down menu that appears in the implementation of &#8220;gadget release&#8221; command, A pop-up &#8220;release gadgets&#8221; dialog box will select the HTML code and copy and then paste it into your blog or website, the Forum will be able to edit a page.</p>
<p>As long as we in the future &#8220;Google documents&#8221; to update the relevant numerical form, the chart gadget will automatically update in real time, from this once and for all.</p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/08/18/the-use-of-google-documents-excel-chart-real-time-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Necessary to specify the color Excel gridlines</title>
		<link>http://msoffice-tips.com/2009/08/18/necessary-to-specify-the-color-excel-gridlines/</link>
		<comments>http://msoffice-tips.com/2009/08/18/necessary-to-specify-the-color-excel-gridlines/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 04:12:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=141</guid>
		<description><![CDATA[As we all know, Excel default grid lines are usually gray, but we can customize the following methods to achieve grid color to distinguish between the contents of the form.
First of all, click &#8220;Tools menu → Options&#8221;, then &#8220;Options&#8221; dialog box, select &#8220;view&#8221; tab → click &#8220;Grid Line Color&#8221; button on the right side of [...]]]></description>
			<content:encoded><![CDATA[<p>As we all know, Excel default grid lines are usually gray, but we can customize the following methods to achieve grid color to distinguish between the contents of the form.</p>
<p>First of all, click &#8220;Tools menu → Options&#8221;, then &#8220;Options&#8221; dialog box, select &#8220;view&#8221; tab → click &#8220;Grid Line Color&#8221; button on the right side of the pull-down menus to choose their own → favorite color, and finally click &#8220;OK&#8221; to.</p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/08/18/necessary-to-specify-the-color-excel-gridlines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>powerpoint to flash</title>
		<link>http://msoffice-tips.com/2009/07/23/powerpoint-to-flash/</link>
		<comments>http://msoffice-tips.com/2009/07/23/powerpoint-to-flash/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 14:36:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[PowerPoint tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=135</guid>
		<description><![CDATA[Why convert powerpoint to Flash? FlashPlay have occupied 93% of the world&#8217;s computers, meaning that the vast majority of computers that can play Flash, so Flash after powerpoint  can be converted into computer security in other players, and do not have to consider the font is not installed or powerpoint  players this problem. In addition to taking into account [...]]]></description>
			<content:encoded><![CDATA[<p>Why convert <strong>powerpoint to Flash</strong>? FlashPlay have occupied 93% of the world&#8217;s computers, meaning that the vast majority of computers that can play Flash, so Flash after powerpoint  can be converted into computer security in other players, and do not have to consider the font is not installed or powerpoint  players this problem. In addition to taking into account the page will be inserted into powerpoint , while powerpoint  itself released into the page, but it leaves much to be desired on the style.After the application of a little more, especially when the powerpoint  to be embedded into other programs, when converted into Flash is a more satisfactory solution. Comparison of three commonly used software, powerpoint to Flash:</p>
<p><strong>1.PowerPoin To Flash</strong></p>
<p><strong>Site:<a href="http://www.dreamingsoft.com/" target="_blank">http://www.dreamingsoft.com/</a></strong></p>
<p>Essential to achieve powerpoint  to Flash, speed very quickly, but all of the powerpoint  can not retain animation conversion, basically is to convert powerpoint  page picture, and then one by one show.</p>
<p><strong>2.PPT To  Flash Converter</strong></p>
<p><strong><img class="alignnone size-full wp-image-136" title="ppt-to-flash-converter" src="http://msoffice-tips.com/wp-content/uploads/2009/07/ppt-to-flash-converter.jpg" alt="ppt-to-flash-converter" width="400" height="263" /></strong></p>
<p><strong>site：</strong><a href="http://www.conaito.com/" target="_blank"><strong>http://www.conaito.com/</strong></a><strong> </strong></p>
<p>Most energy conversion function, the retention of some animation, but some of the animation can not be converd, converted some cable distortion.</p>
<p><strong>3.iSpring Pro</strong></p>
<p><strong>site：<a href="http://www.ispringsolutions.com/index.html" target="_blank">http://www.ispringsolutions.com/index.html</a></strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<div id="attachment_137" class="wp-caption alignnone" style="width: 610px"><strong><img class="size-full wp-image-137" title="ispring-pro" src="http://msoffice-tips.com/wp-content/uploads/2009/07/ispring-pro.jpg" alt="covert ppt into Flash" width="600" height="472" /></strong><p class="wp-caption-text">covert ppt into Flash</p></div>
<p><strong> </strong></p>
<p><strong><span style="font-weight: normal;">Powerful, able to retain all the animations for all PPT conversion perfect, especially after the conversion of the picture navigation (optional) very beautiful. The company also offers a plug-in, the background in the web server to upload the PPT into Flash, so you can easily achieve the slideshare site as PPT upload for others to share functions. The software only defects (may be I did not find a way, but I tried numerous times) is to call in other Flash, the inability to control its size.</span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/07/23/powerpoint-to-flash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two methonds to copy the formula result instead of the formula itself</title>
		<link>http://msoffice-tips.com/2009/07/15/two-methonds-to-cop-the-formula-result-instead-of-the-formula-itself/</link>
		<comments>http://msoffice-tips.com/2009/07/15/two-methonds-to-cop-the-formula-result-instead-of-the-formula-itself/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 02:39:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=132</guid>
		<description><![CDATA[Through the cell in Excel formula automatically enter the corresponding results obtained, but if you want to use a simple copy and paste the results of the command will be moved to other locations, it is not possible, because you copy and paste the formula instead of computing the result, it moved to a new [...]]]></description>
			<content:encoded><![CDATA[<p>Through the cell in Excel formula automatically enter the corresponding results obtained, but if you want to use a simple copy and paste the results of the command will be moved to other locations, it is not possible, because you copy and paste the formula instead of computing the result, it moved to a new location will be the additional number of calculations.</p>
<p>Can be taken two ways: First, results will be copied to a Word document, which most insurance. Second, the results in the calculation of a change in Excel&#8217;s default settings: In the &#8220;Tools / Options / re-calculation&#8221; dialog box to select &#8220;manual re-count&#8221; and &#8220;Save before automatic&#8221; on the hook before removing, and then you can form in the original copy of any of the data. One thing to note, however, it is best to move to the new location of the data and then print them out, because once the &#8220;artificial re-considered as a&#8221; back to &#8220;automatic&#8221;, then move the data will be wrong.</p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/07/15/two-methonds-to-cop-the-formula-result-instead-of-the-formula-itself/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Copy the column width to retain the source of the Excel spreadsheet</title>
		<link>http://msoffice-tips.com/2009/05/25/copy-the-column-width-to-retain-the-source-of-the-excel-spreadsheet/</link>
		<comments>http://msoffice-tips.com/2009/05/25/copy-the-column-width-to-retain-the-source-of-the-excel-spreadsheet/#comments</comments>
		<pubDate>Tue, 26 May 2009 05:08:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=126</guid>
		<description><![CDATA[In Excel, according to the paper size if the column width is set up, ready to print out a copy of the form, I would like to change the contents of some of its forms as another form, whether or not the form found in the contents of the stick has not changed, but the [...]]]></description>
			<content:encoded><![CDATA[<p>In Excel, according to the paper size if the column width is set up, ready to print out a copy of the form, I would like to change the contents of some of its forms as another form, whether or not the form found in the contents of the stick has not changed, but the width of column has changed? Only once again in order to adjust the column width printout. In fact, as long as we do again and then will be able to stick out one form to retain the source column width. If selected in the worksheet cells ready to copy, copy to other cells, you will find a new visco-column width of the table although changed, but the lower right corner of the table but more out of a &#8220;Paste Options&#8221; button, if there is no found that &#8220;Paste Options&#8221; button, you can click the &#8220;Tools&#8221; → Options, in the open &#8220;Options&#8221; dialog box, select &#8220;Edit&#8221; tab, look at the &#8220;Show Paste Options&#8221; is checked on</p>
<p>Click the &#8220;Paste Options&#8221; button, select &#8220;reservations source column width&#8221;, stick to keep the same form from the original column width of the!</p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/05/25/copy-the-column-width-to-retain-the-source-of-the-excel-spreadsheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>insert Word document into  Excel</title>
		<link>http://msoffice-tips.com/2009/05/21/insert-word-document-into-excel/</link>
		<comments>http://msoffice-tips.com/2009/05/21/insert-word-document-into-excel/#comments</comments>
		<pubDate>Thu, 21 May 2009 08:50:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Featured Articles]]></category>
		<category><![CDATA[Word tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=116</guid>
		<description><![CDATA[A friend of mine made a Email  asked me, Is there a way to insert Word document into  Excel spreadsheet? Answer  is yes. office series software is one of the major advantages of working together to each other, between different applications can easily exchange content. Use the Insert Object Excel function, you can easily insert [...]]]></description>
			<content:encoded><![CDATA[<p>A friend of mine made a Email  asked me, Is there a way to <strong>insert Word document into  Excel spreadsheet</strong>? Answer  is yes. office series software is one of the major advantages of working together to each other, between different applications can easily exchange content. Use the Insert Object Excel function, you can easily insert in Word documents Excel. Here are the specific steps.</p>
<p>1. Open the word document to insert the Excel spreadsheet file.</p>
<p>2. Click word document to insert the cell, and then select the menu command &#8220;Insert&#8221; → &#8220;object.&#8221;</p>
<p>3. As shown in Figure 1 in the &#8220;target&#8221; dialog box &#8220;New&#8221; tab, select the object type &#8220;Microsoft word document&#8221; and click &#8220;OK&#8221; button.</p>
<p>4. At this time there will be an Excel document word edit box, directly inside the contents, methods and edit Word documents in exactly the same, as shown in Figure 2.</p>
<p>5. In accordance with the need to drag around the word document object control points, you can adjust the size of Word Document Object, you can mouse over the edge to change its position by dragging. Finished editing the object can be outside the cell, click the mouse, from the editors state. At this point Word document object if you click, you will see the control points around into a circle, drag the graphic object can be the same as dragging the Word object location, and change its size, as shown in Figure 3, operation with very convenient. Double-click the object to re-enter the edit state.</p>
<p>6. In addition to the above to create a new word document object methods, to be in Step 3, select the &#8220;Create from file&#8221; and then in the dialog box shown in Figure 4, click &#8220;View orders&#8221; have been found the existence of the Word document, select the finish and return to the dialog box, click &#8220;OK&#8221; button. Inserted into the Word document Excel document, you can double-click to open and edit at any time.</p>
<p>Figure 4 &#8220;from the file creation&#8221; tab</p>
<p>If you want direct access to stored on the hard drive or other storage on the word document, do not want to increase the size of Excel files, you can select the dialog box shown in Figure 4 of the box &#8220;link to file&#8221;, so that when the modified source file , the source file changes will be reflected in the Excel document.</p>
<p>Using the two methods has a check box &#8220;as icon&#8221;, if it is selected, Excel will only display a document icon, as shown in Figure 5.</p>
<p>Figure 5 shows the icon of the word for the Document Object</p>
<p>Double-click the icon, you can start editing a document word.</p>
<p>More than in the Excel spreadsheet can be inserted into word document object in Word can also be inserted in the Excel spreadsheet object, readers can learn by analogy, to try.</p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/05/21/insert-word-document-into-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Application of Excel function tutorials: Statistical functions (d)</title>
		<link>http://msoffice-tips.com/2009/05/21/application-of-excel-function-tutorials-statistical-functions-d/</link>
		<comments>http://msoffice-tips.com/2009/05/21/application-of-excel-function-tutorials-statistical-functions-d/#comments</comments>
		<pubDate>Thu, 21 May 2009 08:35:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=113</guid>
		<description><![CDATA[61.SKEW 
Purposes: to return to a degree of asymmetry in the distribution. It reflects the average of the asymmetry in the distribution center the degree of asymmetry is that the degree of asymmetry of the distribution side of a time when even more difficult. That the asymmetry degree of negative asymmetry in the distribution side [...]]]></description>
			<content:encoded><![CDATA[<p><strong>61.SKEW </strong></p>
<p>Purposes: to return to a degree of asymmetry in the distribution. It reflects the average of the asymmetry in the distribution center the degree of asymmetry is that the degree of asymmetry of the distribution side of a time when even more difficult. That the asymmetry degree of negative asymmetry in the distribution side has become more negative.</p>
<p>Syntax: SKEW (number1, number2 ,&#8230;)。</p>
<p>Parameters: Number1, number2 &#8230; is the need to calculate the degree of asymmetry 1-30 parameters. Including comma-separated values, such as a single array and name.</p>
<p>Example: the formula &#8220;= SKEW ((22,23,29,19,38,27,25), (16,15,19,17,15,14,34))&#8221; return .854631382.</p>
<p><strong>62.SLOPE </strong></p>
<p>Purposes: to return to the set of data points after the linear regression equation fitting the slope of line (it is the straight line distance between any two points of vertical and horizontal distance ratio, that is, the rate of change of linear regression).</p>
<p>Syntax: SLOPE (known_y&#8217;s, known_x&#8217;s)</p>
<p>Parameters: Known_y&#8217;s dependent variable for the number of type array or range, Known_x&#8217;s data points as variables collection.</p>
<p>Example: the formula &#8220;= SLOPE ((22,23,29,19,38,27,25), (16,15,19,17,15,14,34))&#8221; return -0.100680934.</p>
<p><strong>63.SMALL </strong></p>
<p>Purposes: to return to the first k data of the minimum value, resulting in a specific location on the data values.</p>
<p>Syntax: SMALL (array, k)</p>
<p>Parameters: Array is a need to find the first k-minimum number of the array or data region, K for the return of data or data in the array where the location of the region (from small to large).</p>
<p>Examples: If If A1 = 78, A2 = 45, A3 = 90, A4 = 12, A5 = 85, while the formula &#8220;= SMALL (A1: A5, 3)&#8221; to return to 78.</p>
<p><strong>64.STANDARDIZE </strong></p>
<p>Purposes: to mean to the average return to standard-dev for the standard deviation of the distribution of normal values.</p>
<p>Syntax: STANDARDIZE (x, mean, standard_dev)</p>
<p>Parameters: X for the needs of normal values, Mean distribution of arithmetic mean, Standard_dev standard deviation for the distribution.</p>
<p>Example: the formula &#8220;= STANDARDIZE (62,60,10)&#8221; to return to 0.2.</p>
<p><strong>65.STDEV </strong></p>
<p>Purposes: to estimate the standard deviation of the sample. It reflects the data in relation to the average (mean) the degree of dispersion.</p>
<p>Syntax: STDEV (number1, number2 ,&#8230;)</p>
<p>Parameters: Number1, number2, &#8230; correspond to the overall sample for the parameter 1-30. Can use comma-separated parameter form can also use the array, that is, the reference cell array.</p>
<p>Note: STDEV function parameters by assuming that the sample overall. All the samples if the data is in general, they should be calculated using standard deviation STDEVP function. At the same time, ignore the parameters of function of logical values (TRUE or FALSE) and text. If you can not ignore the logic of value and the text should be used STDEVA function.</p>
<p>Example: Suppose a particular sample of test scores for A1 = 78, A2 = 45, A3 = 90, A4 = 12, A5 = 85, then to estimate the standard deviation of all results of formula &#8220;= STDEV (A1: A5)&#8221;, its results equal to 33.00757489.</p>
<p><strong>66.STDEVA </strong></p>
<p>Use: calculation of a given sample based on the standard deviation. STDEV function which is the difference between the value of the text and logical values (TRUE or FALSE) will also participate in the calculation.</p>
<p>Syntax: STDEVA (value1, value2 ,&#8230;)</p>
<p>Parameters: value1, value2, &#8230; as the overall sample parameters 1-30. Can use comma-separated form of parameters, you can use a single array, that is, the reference cell array.</p>
<p>Example: Suppose a particular part of the examination results for A1 = 78, A2 = 45, A3 = 90, A4 = 12, A5 = 85, then to estimate the standard deviation of all results of formula &#8220;= STDEVA (A1: A5)&#8221;, its results equal to 33.00757489.</p>
<p><strong>67.STDEVP </strong></p>
<p>Use: return of the overall sample standard deviation. It reflects the overall sample compared with the average (mean) the degree of dispersion.</p>
<p>Syntax: STDEVP (number1, number2 ,&#8230;)</p>
<p>Parameters: Number1, number2, &#8230; for the overall sample corresponds to the 1-30 parameters. Can use comma-separated form of parameters, you can use a single array, that is, the reference cell array.</p>
<p>Note: STDEVP function ignored in the calculation of the process of logical values (TRUE or FALSE) and text. If logical values and text can not be ignored, should be used STDEVPA function.</p>
<p>STDEVP function at the same time assuming that the overall parameters for the entire sample. If the data in a representative sample of the overall sample, STDEV function should be used to calculate the standard deviation. When the sample size were more, STDEV function and STDEVP small difference between the calculated results.</p>
<p>Example: If a second examination, only five students to participate in, score of A1 = 78, A2 = 45, A3 = 90, A4 = 12, A5 = 85, then calculated the standard deviation of all the formula &#8220;= STDEVP (A1: A5) &#8220;, the returned results equivalent to 29.52287249.</p>
<p><strong>68.STDEVPA </strong></p>
<p>Purposes: the calculation of standard deviation of the overall sample. STDEVP function it is the difference between the value of the text and logical values (TRUE or FALSE) to participate in the calculation.</p>
<p>Syntax: STDEVPA (value1, value2 ,&#8230;)</p>
<p>Parameters: value1, value2, &#8230; as a sample of the overall parameters of 1-30. Can use comma-separated form of parameters, you can use a single array (that is, cells of the array reference).</p>
<p>Note: STDEVPA function parameters for the assumption that the overall sample. If the data represent part of the overall sample, you must use STDEVA function to estimate the standard deviation.</p>
<p>Example: If a second examination, only five students to participate in, score of A1 = 78, A2 = 45, A3 = 90, A4 = 12, A5 = 85, then calculated the standard deviation of all the formula &#8220;= STDEVP (A1: A5) &#8220;, the returned results equivalent to 29.52287249.</p>
<p><strong>69.STEYX </strong></p>
<p>Purposes: to return through the linear regression method to calculate the forecast value of y generated by the standard error. According to the standard error of measurement used to calculate a single variable x in y amount of predictive value of the error.</p>
<p>Syntax: STEYX (known_y&#8217;s, known_x&#8217;s)</p>
<p>Parameters: Known_y&#8217;s data points as the dependent variable group or region, Known_x&#8217;s data points as variables or regional group.</p>
<p>Example: the formula &#8220;= STEYX ((22,13,29,19,18,17,15), (16,25,11,17,25,14,17))&#8221; return to 4.251584755.</p>
<p><strong>70.TDIST </strong></p>
<p>Purposes: student&#8217;s t-returned to the distribution of percentage points (probability), t distribution value (x) is the calculated t value (the calculation of its percentage points). t distribution for small sample data set of hypothesis testing, the use of this function can replace the critical value of t distribution table.</p>
<p>Syntax: TDIST (x, degrees_freedom, tails)</p>
<p>Parameters: X is the number of distribution requirements, Degrees_freedom integer degree of freedom to express, Tails of the distribution function specified in the return is a single-tailed or two-tailed distribution. If tails = 1, function return TDIST one-tailed distribution. If tails = 2, function to return to two-tailed distribution TDIST.</p>
<p>Example: the formula &#8220;= TDIST (60,2,1)&#8221; to return to .000138831.</p>
<p><strong>71.TINV </strong></p>
<p>Purposes: to return as a function of probability and the degree of freedom of the student&#8217;s t value of t distribution.</p>
<p>Syntax: TINV (probability, degrees_freedom)</p>
<p>Parameters: Probability for the corresponding two-tailed Student&#8217;s-t probability distribution, Degrees_freedom for the distribution of the degrees of freedom.</p>
<p>Example: the formula &#8220;= TINV (0.5,60)&#8221; to return to .678600713.</p>
<p><strong>72.TREND </strong></p>
<p>Purposes: to return to a linear regression line fitting a set of vertical coordinates (y value). Find that a given array known_y&#8217;s and known_x&#8217;s a straight line (least square method), and return to the specified array new_x&#8217;s value in a straight line on the corresponding y value.</p>
<p>Syntax: TREND (known_y&#8217;s, known_x&#8217;s, new_x&#8217;s, const)</p>
<p>Parameters: Known_y&#8217;s for the known relationship between the y = mx + b in the y value of the collection, Known_x&#8217;s for the known relationship between the y = mx + b in the optional set of x values, New_x&#8217;s need TREND function to return to the corresponding y value of the new x value , Const specified for the logical value of the constant term b is forced to 0.</p>
<p><strong>73.TRIMMEAN </strong></p>
<p>Purposes: to return to the internal data set on average. TRIMMEAN function from a data set of the head and tail to remove a certain percentage of data points, and then the average demand. When the hope that removed part of the analysis of calculation data, you can use this function.</p>
<p>Syntax: TRIMMEAN (array, percent)</p>
<p>Parameters: Array for the need for screening and for the average of the array or data region, Percent for the purpose of calculating when to remove the proportion of data points. If percent = 0.2, while removal of 20 data 4, that is, remove the two rear head removed 2. Percent = 0.1,30 if data points equal to 10 percent of the three data points. TRIMMEAN function will be symmetric in the data set to remove the head and tail of the data.</p>
<p>Example: If A1 = 78, A2 = 45, A3 = 90, A4 = 12, A5 = 85, while the formula &#8220;= TRIMMEAN (A1: A5, 0.1)&#8221; back to 62.</p>
<p><strong>74.TTEST </strong></p>
<p>Purposes: to return to s-t-student test associated probabilities. It can determine whether two samples come from two with the same overall average.</p>
<p>Syntax: TTEST (array1, array2, tails, type)</p>
<p>Parameters: Array1 is the first data set, Array2 is the second data set, Tails of the mantissa distribution curve specified. If tails = 1, TTEST function using one-tailed distribution. If tails = 2, TTEST function using two-tailed distribution. Type for the type of t test. If the type equivalent (1,2, 3) test (paired, two-sample test, such as variance, heteroscedastic two-sample test)</p>
<p>Example: the formula &#8220;= TTEST ((3,4,5,8,9,1,2,4,5), (6,19,3,2,14,4,5,17,1), 2,1 ) &#8220;to return to 0.196016.</p>
<p><strong>75.VAR </strong></p>
<p>Purposes: to estimate sample variance.</p>
<p>Syntax: VAR (number1, number2 ,&#8230;)</p>
<p>Parameters: Number1, number2, &#8230; correspond to the overall sample and 1-30 parameters.</p>
<p>Example: Suppose a particular examination taken in the five scores as a random sample, estimation results using VAR variance function, the sample value of A1 = 78, A2 = 45, A3 = 90, A4 = 12, A5 = 85 , then the formula &#8220;= VAR (A1: A5)&#8221; to return to 1089.5.</p>
<p><strong>76.VARA </strong></p>
<p>Uses: used to estimate the variance of a given sample. VAR function with the difference between the text and logical values (TRUE and FALSE) will also participate in the calculation.</p>
<p>Syntax: VARA (value1, value2 ,&#8230;)</p>
<p>Parameters: value1, value2, &#8230; as a general sample parameters 1-30.</p>
<p>Example: Suppose a particular examination taken in the five scores as a random sample, estimation results using VAR variance function, the sample value of A1 = 78, A2 = 45, A3 = 90, A4 = 12, A5 = 85 , then the formula &#8220;= VARA (A1: A5, TRUE)&#8221; to return to 1491.766667.</p>
<p><strong>77.VARP </strong></p>
<p>Use: calculation of the overall sample variance.</p>
<p>Syntax: VARP (number1, number2 ,&#8230;)</p>
<p>Parameters: Number1, number2, &#8230; for the overall sample corresponds to the 1-30 parameters. The logic values (TRUE and FALSE) and the text will be ignored.</p>
<p>Example: If a second make-up, only five students to participate in, score of A1 = 88, A2 = 55, A3 = 90, A4 = 72, A5 = 85, with results VARP variance function estimation, then the formula &#8220;= VARP (A1: A5) &#8220;back to 214.5.</p>
<p><strong>78.VARPA </strong></p>
<p>Use: calculation of the overall sample variance. VARP function with the difference between the text and logical values (TRUE and FALSE) will also participate in the calculation.</p>
<p>Syntax: VARPA (value1, value2 ,&#8230;)</p>
<p>Parameters: value1, value2, &#8230; as a sample of the overall parameters of 1-30.</p>
<p>Example: If a second make-up, only five students to participate in, score of A1 = 88, A2 = 55, A3 = 90, A4 = 72, A5 = 85, with results VARPA variance function estimation, then the formula &#8220;= VARPA (A1: A5) &#8220;back to 214.5.</p>
<p><strong>79.WEIBULL </strong></p>
<p>Purposes: the distribution of the return of Webber. Use this function can be reliability analysis, such as equipment MTBF.</p>
<p>Syntax: WEIBULL (x, alpha, beta, cumulative)</p>
<p>Parameters: X is used to calculate the value function, Alpha parameter distribution, Beta distribution parameters, Cumulative specified in the form of function.</p>
<p>Example: the formula &#8220;= WEIBULL (98,21,100, TRUE)&#8221; to return to 0.480171231, = WEIBULL (58,11,67, FALSE) to return to .031622583.</p>
<p><strong>80.ZTEST </strong></p>
<p>Purposes: to return to the two-tailed z test P value. Z test based on data sets or to generate x array of standard scores, and the return of the two-tailed probability distribution. You can use this function to return samples from a specific observation in the overall value of the likelihood estimation.</p>
<p>Syntax: ZTEST (array, x, sigma)</p>
<p>Parameters: Array for x as a test region of the array or data. X value to be tested. Sigma as a whole (known) standard deviation, if omitted, use the sample standard deviation.</p>
<p>Example: the formula &#8220;= ZTEST ((3,6,7,8,6,5,4,2,1,9), 4)&#8221; return 0.090574.</p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/05/21/application-of-excel-function-tutorials-statistical-functions-d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Application of Excel function tutorials: Statistical functions (c)</title>
		<link>http://msoffice-tips.com/2009/05/21/application-of-excel-function-tutorials-statistical-functions-c/</link>
		<comments>http://msoffice-tips.com/2009/05/21/application-of-excel-function-tutorials-statistical-functions-c/#comments</comments>
		<pubDate>Thu, 21 May 2009 08:33:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[EXcel tips]]></category>

		<guid isPermaLink="false">http://msoffice-tips.com/?p=111</guid>
		<description><![CDATA[41.MAX 
Purposes: to return to the greatest concentration of numerical data.
Syntax: MAX (number1, number2 ,&#8230;)
Parameters: Number1, number2, &#8230; is the need to find the greatest value of 1-30 values.
Example: If A1 = 71, A2 = 83, A3 = 76, A4 = 49, A5 = 92, A6 = 88, A7 = 96, while the formula &#8220;= [...]]]></description>
			<content:encoded><![CDATA[<p><strong>41.MAX </strong></p>
<p>Purposes: to return to the greatest concentration of numerical data.</p>
<p>Syntax: MAX (number1, number2 ,&#8230;)</p>
<p>Parameters: Number1, number2, &#8230; is the need to find the greatest value of 1-30 values.</p>
<p>Example: If A1 = 71, A2 = 83, A3 = 76, A4 = 49, A5 = 92, A6 = 88, A7 = 96, while the formula &#8220;= MAX (A1: A7)&#8221; to return to 96.</p>
<p><strong>42.MAXA </strong></p>
<p>Purposes: to return to the greatest concentration of numerical data. With MAX value of the difference between the text and logical values (such as TRUE and FALSE) as a figure involved in the calculation.</p>
<p>Syntax: MAXA (value1, value2 ,&#8230;)</p>
<p>Parameters: value1, value2, &#8230; need to find the greatest value from the 1-30 parameters.</p>
<p>Example: If A1: A5 contains 0,0.2,0.5,0.4 and TRUE, then: MAXA (A1: A5) return 1.</p>
<p><strong>43.MEDIAN </strong></p>
<p>Purposes: to return to a given set of median values (it is in a group of data in the middle of a few. In other words, in this set of data, over half of the data than it is large, more than half of the data it small) .</p>
<p>Syntax: MEDIAN (number1, number2 ,&#8230;)</p>
<p>Parameters: Number1, number2, &#8230; is the need to find the median number of 1-30 parameters.</p>
<p>Examples: MEDIAN (11,12,13,14,15) return 13; MEDIAN (1,2,3,4,5,6) to return to 3.5, that is, the average of 3 and 4.</p>
<p><strong>44.MIN </strong></p>
<p>Purposes: to return to the table to set the minimum parameters.</p>
<p>Syntax: MIN (number1, number2 ,&#8230;)。</p>
<p>Parameters: Number1, number2, &#8230; are found from the minimum number of 1-30 parameters.</p>
<p>Example: If A1 = 71, A2 = 83, A3 = 76, A4 = 49, A5 = 92, A6 = 88, A7 = 96, while the formula &#8220;= MIN (A1: A7)&#8221; return 49; and = MIN (A1 : A5, 0, -8) return -8.</p>
<p><strong>45.MINA </strong></p>
<p>Purposes: to return to the list of parameters of the minimum value. MIN function with the difference between the value of the text and logical values (such as TRUE and FALSE) are also calculated as the number of participation.</p>
<p>Syntax: MINA (value1, value2 ,&#8230;)</p>
<p>Parameters: value1, value2, &#8230; need to find the smallest value from 1-30 parameters.</p>
<p>Example: If A1 = 71, A2 = 83, A3 = 76, A4 = 49, A5 = 92, A6 = 88, A7 = FALSE, then the formula &#8220;= MINA (A1: A7)&#8221; return 0.</p>
<p><strong>46.MODE </strong></p>
<p>Purposes: to return to the array or data in a particular area of the plural.</p>
<p>Syntax: MODE (number1, number2 ,&#8230;)。</p>
<p>Parameters: Number1, number2, &#8230; are calculated for the plural 1-30 parameters.</p>
<p>Example: If A1 = 71, A2 = 83, A3 = 71, A4 = 49, A5 = 92, A6 = 88, while the formula &#8220;= MODE (A1: A6)&#8221; to return to 71.</p>
<p><strong>47.NEGBINOMDIST </strong></p>
<p>Purposes: to return to the negative binomial distribution. When the success probability is constant probability_s, the function return NEGBINOMDIST successful in number_s prior to arrival, there number_f times the probability of failure. This function is similar with the binomial distribution, but its success is the number of fixed, test the total number of variables. With the binomial distribution is similar to test number was assumed to be independent variables.</p>
<p>Syntax: NEGBINOMDIST (number_f, number_s, probability_s)</p>
<p>Views Number_f is a failure, Number_s critical for the success of the number, Probability_s is the probability of success.</p>
<p>Example: If looking for 10 people who have reacted swiftly, and the known characteristics of the candidates have such a probability of 0.3. Then, to find qualified candidates 10 months before the need for qualified candidates for the probability of the formula &#8220;= NEGBINOMDIST (40,10,0.3)&#8221;, the calculation result is 0.007723798.</p>
<p><strong>48.NORMDIST </strong></p>
<p>Purposes: to return to a given mean and standard deviation of the cumulative normal distribution function.</p>
<p>Syntax: NORMDIST (x, mean, standard_dev, cumulative)</p>
<p>Parameters: X is used to calculate the normal distribution function of the interval point, Mean is the arithmetic mean of the distribution, Standard_dev is the distribution of standard deviation; Cumulative is a logical value, specified in the form of function. If cumulative is TRUE, then return to the cumulative distribution function NORMDIST function; If FALSE, the return probability density function.</p>
<p>Example: the formula &#8220;= NORMDIST (46,35,2.5, TRUE)&#8221; to return to .999994583.</p>
<p><strong>49.NORMSINV </strong></p>
<p>Purposes: to return the cumulative standard normal distribution function of the inverse function. The distribution of the average 0, standard deviation of 1.</p>
<p>Syntax: NORMSINV (probability)</p>
<p>Parameters: Probability is the probability distribution.</p>
<p>Example: the formula &#8220;= NORMSINV (0.8)&#8221; to return to .841621386.</p>
<p><strong>50.NORMSDIST </strong></p>
<p>Purposes: to return the cumulative standard normal distribution function, the distribution of average 0, standard deviation of 1.</p>
<p>Syntax: NORMSDIST (z)</p>
<p>Parameters: Z for the need to calculate the distribution of values.</p>
<p>Example: the formula &#8220;= NORMSDIST (1.5)&#8221; the results of the calculation of 0.933192771.</p>
<p><strong>51.NORMSINV </strong></p>
<p>Purposes: to return the cumulative standard normal distribution function of the inverse function. The distribution of the average 0, standard deviation of 1.</p>
<p>Syntax: NORMSINV (probability)</p>
<p>Parameters: Probability is the probability distribution.</p>
<p>Example: the formula &#8220;= NORMSINV (0.933192771)&#8221; to return to 1.499997779 (ie 1.5).</p>
<p><strong>52.PEARSON </strong></p>
<p>Purposes: to return to Pearson (Napier Health) the product moment correlation coefficient r, it is a range of between -1.0 to 1.0 (including -1.0 and 1.0 inclusive) of the non-dimensional index, reflecting the data collection between the two linear relevance.</p>
<p>Syntax: PEARSON (array1, array2)</p>
<p>Parameters: Array1 set as variables, Array2 set as the dependent variable.</p>
<p>Example: If A1 = 71, A2 = 83, A3 = 71, A4 = 49, A5 = 92, A6 = 88, B1 = 69, B2 = 80, B3 = 76, B4 = 40, B5 = 90, B6 = 81 , then the formula &#8220;= PEARSON (A1: A6, B1: B6)&#8221; to return to 0.96229628.</p>
<p><strong>53.PERCENTILE </strong></p>
<p>Purposes: to return to the K value of regional numerical point percentage. For example, examinations to determine the top 80 percentage points in the scores.</p>
<p>Syntax: PERCENTILE (array, k)</p>
<p>Parameters: Array for the definition of the relative positions of the array or the numerical values of regional, k for the array needs to be the value of their ranking.</p>
<p>Example: If a sub-test scores for A1 = 71, A2 = 83, A3 = 71, A4 = 49, A5 = 92, A6 = 88, while the formula &#8220;= PERCENTILE (A1: A6, 0.8)&#8221; to return to 88, that is, examination In order to place more than 80 percentage points, while scores of at least 88 points should be.</p>
<p><strong>54.PERCENTRANK </strong></p>
<p>Purposes: to return a value in a data set as a percentage of qualifying can be used to view data in the data location. For example, a calculation of scores of examination results in all position.</p>
<p>Syntax: PERCENTRANK (array, x, significance)</p>
<p>Parameters: Array for each other to determine the relative position of the data set, X for which the values need to be qualifying, Significance is optional, that the percentage of the value of the return of the median effective. If omitted, function to retain three decimal PERCENTRANK.</p>
<p>Example: If a sub-test scores for A1 = 71, A2 = 83, A3 = 71, A4 = 49, A5 = 92, A6 = 88, while the formula &#8220;= PERCENTRANK (A1: A6, 71)&#8221; The results of the 0.2 , that is, 71 points in six scores ranked 20%.</p>
<p><strong>55.PERMUT </strong></p>
<p>Purposes: to return from a given number of selected elements of the collection with a few number of elements.</p>
<p>Syntax: PERMUT (number, number_chosen)</p>
<p>Parameters: Number for the total number of elements, Number_chosen each with the number of elements.</p>
<p>Example: If a lottery number 9 number, each number ranging from 0-9 (including 0 and 9). With the number of all possible use of the formula &#8220;= PERMUT (10,9)&#8221; calculation, the result is 3628800.</p>
<p><strong>56.POISSON </strong></p>
<p>Purposes: to return to Poisson distribution. Poisson distribution is usually a period of time used to predict the number of incidents, such as within a minute through the toll booths of the number of cars.</p>
<p>Syntax: POISSON (x, mean, cumulative)</p>
<p>Parameters: X is a number of events, Mean is the expected value, Cumulative probability of return in order to determine the logic value of the distribution of the form.</p>
<p>Example: the formula &#8220;= POISSON (5,10, TRUE)&#8221; to return to 0.067085963, = POISSON (3,12, FALSE) to return to .001769533.</p>
<p><strong>57.PROB </strong></p>
<p>Purposes: to return to a group the probability of the incident falls within the designated area of the incident and the corresponding probability.</p>
<p>Syntax: PROB (x_range, prob_range, lower_limit, upper_limit)</p>
<p>Parameters: X_range is a probability value of their respective x values of regional, Prob_range with the numerical x_range corresponding to a set of probability values, Lower_limit for the numerical calculation of the probability of lower bound of summation, Upper_limit is used to calculate the probability summation of optional upper bound value.</p>
<p>Example: the formula &#8220;= PROB ((0,1,2,3), (0.2,0.3,0.1,0.4), 2)&#8221; back to 0.1, = PROB ((0,1,2,3), (0.2,0.3 , 0.1,0.4), 1,3) return 0.8.</p>
<p><strong>58.QUARTILE </strong></p>
<p>Purposes: to return a set of data points quartile. Quartile test scores are commonly used in data such as the overall group, such as a group obtained scores in the top 25% of the scores.</p>
<p>Syntax: QUARTILE (array, quart)</p>
<p>Parameters: Array quartile for the need to find the value of the array or the number of reference regions, Quart decided to return the value of which quartile. If qurart check 0,1, 2,3 or 4, QUARTILE function is to return to the minimum, first quartile (25th percentile ranking), middle of the median (50th percentile ranking), the third quartile (75th percentile ranking) and the maximum value.</p>
<p>Example: If A1 = 78, A2 = 45, A3 = 90, A4 = 12, A5 = 85, while the formula &#8220;= QUARTILE (A1: A5, 3)&#8221; to return to 85.</p>
<p><strong>59.RANK </strong></p>
<p>Purposes: to return a numeric value in a group of ranking (if the data list has been ranked the sequence, then the value of the current ranking is its location).</p>
<p>Syntax: RANK (number, ref, order)</p>
<p>Parameters: Number is the need to calculate the ranking of a number; Ref is an array contains a set of figures or references (including the non-value-type parameters are ignored); Order for a number of ways specified in qualifying. If the order is 0 or omitted, according to the data in descending order of ranking list. If the order is not zero, ref as the data in ascending order according to the list of qualifying.</p>
<p>NOTE: RANK function to repeat the same numerical ranking. However, the existence of duplication of the number of follow-up will affect the ranking values. If an integer, if an integer 60 appears twice, the ranking of 5, then 61 qualifying for the 7 (not ranking the value of 6).</p>
<p>Example: If A1 = 78, A2 = 45, A3 = 90, A4 = 12, A5 = 85, while the formula &#8220;= RANK (A1, $ A $ 1: $ A $ 5)&#8221; to return to 5,8,2,10,4 .</p>
<p><strong>60.RSQ </strong></p>
<p>Purposes: to return to the set of data points of Pearson product moment correlation coefficient of the square.</p>
<p>Syntax: RSQ (known_y&#8217;s, known_x&#8217;s)</p>
<p>Parameters: Known_y&#8217;s for an array or data region, Known_x&#8217;s also an array or data.</p>
<p>Example: the formula &#8220;= RSQ ((22,23,29,19,38,27,25), (16,15,19,17,15,14,34))&#8221; return .013009334.</p>
]]></content:encoded>
			<wfw:commentRss>http://msoffice-tips.com/2009/05/21/application-of-excel-function-tutorials-statistical-functions-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
