<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>microsoft.public.excel.newusers Google Group</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers</link>
  <description>Microsoft Office Excel newsgroup.</description>
  <language>en</language>
  <item>
  <title>RE: data from many work books</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/a58972f1de3264a6/6dce2af92993b4b1?show_docid=6dce2af92993b4b1</link>
  <description>
  This can be done with VBA code (a macro). You haven&#39;t given enough &lt;br&gt; information to provide a more detailed answer, but there is one command &lt;br&gt; available that does allow you to browse and identify files to be worked with &lt;br&gt; that will probably end up in the code: &lt;br&gt; Application.GetOpenFilename &lt;br&gt; will return a filename from a dialog box, and then the code can open that
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/a58972f1de3264a6/6dce2af92993b4b1?show_docid=6dce2af92993b4b1</guid>
  <author>
  jlat...@discussions.microsoft.com
  (JLatham)
  </author>
  <pubDate>Mon, 23 Nov 2009 13:11:02 UT
</pubDate>
  </item>
  <item>
  <title>Re: CountIF on two criteria</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/9e634820fd3ddd22/68bb0badac5c5c34?show_docid=68bb0badac5c5c34</link>
  <description>
  =SUMPRODUCT(--(a1:a100&amp;lt;&amp;gt;&amp;quot;O&amp;quot;),- -(B1:b100=&amp;quot;CAT&amp;quot;),C1:C100) &lt;br&gt; This will sum (total) every C value whose corresponding B value is CAT and &lt;br&gt; corresponding A value is not O &lt;br&gt; =SUMPRODUCT(--(a1:a100&amp;lt;&amp;gt;&amp;quot;O&amp;quot;),- -(B1:b100=&amp;quot;CAT&amp;quot;)) &lt;br&gt; This will count how many B values are CAT with corresponding A values that &lt;br&gt; are not O &lt;br&gt; For more details on SUMPRODUCT
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/9e634820fd3ddd22/68bb0badac5c5c34?show_docid=68bb0badac5c5c34</guid>
  <author>
  blien...@stfx.truenorth.ca
  (Bernard Liengme)
  </author>
  <pubDate>Mon, 23 Nov 2009 13:10:06 UT
</pubDate>
  </item>
  <item>
  <title>Re: Freeze at the top &amp; split the side in Excel97?</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/0fb1070ed16169a6/f935ea561fcdd371?show_docid=f935ea561fcdd371</link>
  <description>
  Move to B2, use command Window | Freeze Pane &lt;br&gt; Now as you scroll vertically or horizontally, row 1 and column A are always &lt;br&gt; visible &lt;br&gt; This is from Excel 2003 but I seem to recall doing the same in Excel 97 &lt;br&gt; best wishes
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/0fb1070ed16169a6/f935ea561fcdd371?show_docid=f935ea561fcdd371</guid>
  <author>
  blien...@stfx.truenorth.ca
  (Bernard Liengme)
  </author>
  <pubDate>Mon, 23 Nov 2009 13:04:09 UT
</pubDate>
  </item>
  <item>
  <title>Re: Calculating the 95% confidence inteval of a slope</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/e2f75dfc7d699a43/5564318331a2cde7?show_docid=5564318331a2cde7</link>
  <description>
  1) Using Analysis ToolPac Regression tool. See &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.jeremymiles.co.uk/regressionbook/extras/appendix2/excel/&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.stat.wmich.edu/s216/book/node128.html&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; 2) With LINEST and/or STEYX. See &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://office.microsoft.com/en-us/excel/HA011119631033.aspx&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; quote:The STEYX function calculates the standard error of a regression, a
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/e2f75dfc7d699a43/5564318331a2cde7?show_docid=5564318331a2cde7</guid>
  <author>
  blien...@stfx.truenorth.ca
  (Bernard Liengme)
  </author>
  <pubDate>Mon, 23 Nov 2009 13:00:29 UT
</pubDate>
  </item>
  <item>
  <title>Re: CountIF on two criteria</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/9e634820fd3ddd22/dd373642fc60dfa7?show_docid=dd373642fc60dfa7</link>
  <description>
  quite a few items listed &lt;br&gt; to count the cells that are NOT Equal to o &lt;br&gt; =COUNTIF(C9:C28,&amp;quot;&amp;lt;&amp;gt;&amp;quot;&amp;amp;&amp;quot;o&amp;quot;) &lt;br&gt; I&#39;m not sure how you are going to sum these values .. other than &lt;br&gt; replacing them with numbers &lt;br&gt; so something like &lt;br&gt; =IF(cell = &amp;quot;3-4&amp;quot;, 3, &amp;quot;another IF for another value&amp;quot;) and so on &lt;br&gt; the you can use &lt;br&gt; SUMIF
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/9e634820fd3ddd22/dd373642fc60dfa7?show_docid=dd373642fc60dfa7</guid>
  <author>
  etaf.423...@thecodecage.com
  (etaf)
  </author>
  <pubDate>Mon, 23 Nov 2009 11:57:00 UT
</pubDate>
  </item>
  <item>
  <title>Re: Percentages</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/1b19b76641e2ecbf/3980c45dcae83f83?show_docid=3980c45dcae83f83</link>
  <description>
  can you be more specific .... &lt;br&gt; However, assuming that you want to put the Value 1 to 5 in a cell where &lt;br&gt; another cell is grouped as percentages &lt;br&gt; try (I have assumed the cell is formated as %, hence decimal values) &lt;br&gt; =IF(D9=1,5,IF(D9&amp;gt;=0.75,4,IF(D9 &amp;gt;=0.5,3,IF(D9&amp;gt;=0.25,2,1))))
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/1b19b76641e2ecbf/3980c45dcae83f83?show_docid=3980c45dcae83f83</guid>
  <author>
  etaf.423...@thecodecage.com
  (etaf)
  </author>
  <pubDate>Mon, 23 Nov 2009 11:36:09 UT
</pubDate>
  </item>
  <item>
  <title>Re: Calculating with Variable Search</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/96226e71f6f544e2/cf565d82c66a4c48?show_docid=cf565d82c66a4c48</link>
  <description>
  Hi Biff, &lt;br&gt; When I ran =ISNUMBER(c2) the result came up as TRUE. Here is a sample &lt;br&gt; of the data I am looking at. In column labeled 1 on the example you &lt;br&gt; can see at 18:13 timestamp the number is below 126 which would clear &lt;br&gt; the condition so anything before it would be what I want calculated. &lt;br&gt; the second column is showing the =ISNUMBER(C2) that you asked about.
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/96226e71f6f544e2/cf565d82c66a4c48?show_docid=cf565d82c66a4c48</guid>
  <author>
  markadellaqu...@gmail.com
  (markd951)
  </author>
  <pubDate>Mon, 23 Nov 2009 11:18:46 UT
</pubDate>
  </item>
  <item>
  <title>Re: filter multiple values</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/93f5ce8b40c97619/f9da295638ebb31f?show_docid=f9da295638ebb31f</link>
  <description>
  Thanks a lot Bernie. &lt;br&gt; Howeevr considering my lack of experience with excel i couldnt get that &lt;br&gt; right..Let me be more simple this time. &lt;br&gt; NAME AGE SEX &lt;br&gt; Andre 25 m &lt;br&gt; Charles 26 m &lt;br&gt; Julia 22 f &lt;br&gt; dev 25 m
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/93f5ce8b40c97619/f9da295638ebb31f?show_docid=f9da295638ebb31f</guid>
  <author>
  suni...@discussions.microsoft.com
  (Sunir M S)
  </author>
  <pubDate>Mon, 23 Nov 2009 11:00:01 UT
</pubDate>
  </item>
  <item>
  <title>data from many work books</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/a58972f1de3264a6/5f238149a0469d48?show_docid=5f238149a0469d48</link>
  <description>
  How do I collect data from many workbooks from select columns into a single &lt;br&gt; workbook automatically. I don&#39;t want to open each one manually and copy and &lt;br&gt; paste from it to the main workbook. The system should ask me for which file &lt;br&gt; to be opened. &lt;br&gt; Please can you help. &lt;br&gt; Thanks and regards, &lt;br&gt; Sandeep S.
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/a58972f1de3264a6/5f238149a0469d48?show_docid=5f238149a0469d48</guid>
  <author>
  sandee...@discussions.microsoft.com
  (Sandeep S.)
  </author>
  <pubDate>Mon, 23 Nov 2009 10:24:01 UT
</pubDate>
  </item>
  <item>
  <title>Percentages</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/1b19b76641e2ecbf/26aa60a330476526?show_docid=26aa60a330476526</link>
  <description>
  Hi &lt;br&gt; I would like to use a scoring method in percentages which would recognise 1 &lt;br&gt; to 5 as 0% - 100%. e.g 1= 0-24%, 2= 25-49%, 3= 50-74%, 4= 75-99% and 5= 100%, &lt;br&gt; thanking you in advance, &lt;br&gt; Geno...
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/1b19b76641e2ecbf/26aa60a330476526?show_docid=26aa60a330476526</guid>
  <author>
  g...@discussions.microsoft.com
  (GENO)
  </author>
  <pubDate>Mon, 23 Nov 2009 09:16:01 UT
</pubDate>
  </item>
  <item>
  <title>Calculating the 95% confidence inteval of a slope</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/e2f75dfc7d699a43/e8686205c0724c9f?show_docid=e8686205c0724c9f</link>
  <description>
  As a low key user, I can calcualte the slope of a line from the x and y &lt;br&gt; values, but I don&#39;t know how to determine how good the estimate is. Can &lt;br&gt; someone help?
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/e2f75dfc7d699a43/e8686205c0724c9f?show_docid=e8686205c0724c9f</guid>
  <author>
  see...@discussions.microsoft.com
  (seeker)
  </author>
  <pubDate>Mon, 23 Nov 2009 02:20:01 UT
</pubDate>
  </item>
  <item>
  <title>Freeze at the top &amp; split the side in Excel97?</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/0fb1070ed16169a6/8de0c3fd4b22b6a9?show_docid=8de0c3fd4b22b6a9</link>
  <description>
  Is it not possible to freeze the titles at the top of the screen &lt;br&gt; (always show row 1 at the top of the screen) AND then split the screen &lt;br&gt; so that I can view one column on the left side independantly of the &lt;br&gt; section I&#39;m working on on the right side? &lt;br&gt; It seems that splitting the screen cancels the freeze command, and it
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/0fb1070ed16169a6/8de0c3fd4b22b6a9?show_docid=8de0c3fd4b22b6a9</guid>
  <author>
  slickrcbdn...@gmail.com
  (SlickRCBD)
  </author>
  <pubDate>Mon, 23 Nov 2009 01:07:14 UT
</pubDate>
  </item>
  <item>
  <title>Re: Mark Rows for scrolling</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/f39592c22070b7d2/0828331d1124e3cc?show_docid=0828331d1124e3cc</link>
  <description>
  Thanks Dave, &lt;br&gt; I&#39;m just now getting around to reading your memo. &lt;br&gt; I probably just set it up wrong. &lt;br&gt; I may have clicked on the &amp;quot;number&amp;quot; on the extreme left of the sheet instead &lt;br&gt; of an active cell. &lt;br&gt; I&#39;ll give it another try tomorrow and let you know how I come out. &lt;br&gt; Thanks again, &lt;br&gt; Doug
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/f39592c22070b7d2/0828331d1124e3cc?show_docid=0828331d1124e3cc</guid>
  <author>
  dnmcnnos...@comcast.net
  (Doug Mc)
  </author>
  <pubDate>Mon, 23 Nov 2009 00:35:38 UT
</pubDate>
  </item>
  <item>
  <title>CountIF on two criteria</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/9e634820fd3ddd22/c00dce7d69e7a4ae?show_docid=c00dce7d69e7a4ae</link>
  <description>
  I&#39;m trying to tabulate a survey using Office 97. ONE of the things I &lt;br&gt; need to tabulate is dependent on two critera. If the first column is &lt;br&gt; &amp;quot;O&amp;quot; (a text field, as the other entires are ranges), then I do not &lt;br&gt; want to count the value for the second field. Otherwise, I want a &lt;br&gt; total of all the fields in a second column with a given value where
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/9e634820fd3ddd22/c00dce7d69e7a4ae?show_docid=c00dce7d69e7a4ae</guid>
  <author>
  slickrcbdn...@gmail.com
  (SlickRCBD)
  </author>
  <pubDate>Sun, 22 Nov 2009 23:57:07 UT
</pubDate>
  </item>
  <item>
  <title>RE: What does =B11*$C$4 mean?</title>
  <link>http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/7c8fc6ce7fa9a96d/b3a3e7256b48d701?show_docid=b3a3e7256b48d701</link>
  <description>
  Why don&#39;t you try to copy te cell down one row or over one row. You&#39;ll see &lt;br&gt; B11 changing, but $C$4 doesn&#39;t change. It&#39;s absolute referencing.
  </description>
  <guid isPermaLink="true">http://groups.google.ca/group/microsoft.public.excel.newusers/browse_thread/thread/7c8fc6ce7fa9a96d/b3a3e7256b48d701?show_docid=b3a3e7256b48d701</guid>
  <author>
  barbreinha...@discussions.microsoft.com
  (Barb Reinhardt)
  </author>
  <pubDate>Sun, 22 Nov 2009 20:37:01 UT
</pubDate>
  </item>
  </channel>
</rss>
