<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://excelusergroup.org/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Daily Dose of Excel</title><subtitle type="html">The Daily Dose of Excel Blog, provided by kind permission of it&amp;#39;s owner, Dick Kusleika. Mirrored here on www.excelusergroup.org for your convenience.</subtitle><id>http://excelusergroup.org/blogs/daily_dose_of_excel/atom.aspx</id><link rel="alternate" type="text/html" href="http://excelusergroup.org/blogs/daily_dose_of_excel/default.aspx" /><link rel="self" type="application/atom+xml" href="http://excelusergroup.org/blogs/daily_dose_of_excel/atom.aspx" /><generator uri="http://communityserver.org" version="4.0.30619.63">Community Server</generator><updated>2010-02-21T07:33:38Z</updated><entry><title>Importing text files in an Excel sheet</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/03/11/importing-text-files-in-an-excel-sheet.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/03/11/importing-text-files-in-an-excel-sheet.aspx</id><published>2010-03-11T09:27:54Z</published><updated>2010-03-11T09:27:54Z</updated><content type="html">Hi there!
Many times it is a newsgroup post which triggers me to do a writeup on a specific subject. This time, a user asked how he could import a csv file every month, without having to go through the hassle of renaming the file and re-defining the import settings each time.
Opening the file in Excel [...] Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/03/11/importing-text-files-in-an-excel-sheet.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5711" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="Excel12" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/Excel12/default.aspx" /><category term="MVP" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/MVP/default.aspx" /><category term="External Data" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/External+Data/default.aspx" /><category term="Excel 14" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/Excel+14/default.aspx" /><category term="For Normal People" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/For+Normal+People/default.aspx" /></entry><entry><title>Using the MATCH Function for a Linear Search and a Binary Search</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/03/10/using-the-match-function-for-a-linear-search-and-a-binary-search.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/03/10/using-the-match-function-for-a-linear-search-and-a-binary-search.aspx</id><published>2010-03-10T20:43:01Z</published><updated>2010-03-10T20:43:01Z</updated><content type="html">Given the problem I have with images and blog posts, I&amp;#8217;m trying something new. I uploaded the content of the post to my website and am using an iframe to post it here. Yes, the UI experience is somewhat different than scrolling the entire browser window but hopefully it is something most people [...] Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/03/10/using-the-match-function-for-a-linear-search-and-a-binary-search.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5707" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="General" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/General/default.aspx" /><category term="Downloads" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/Downloads/default.aspx" /></entry><entry><title>Keno Odds</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/03/09/keno-odds.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/03/09/keno-odds.aspx</id><published>2010-03-09T21:37:44Z</published><updated>2010-03-09T21:37:44Z</updated><content type="html">We were trying to figure out the odds on keno the other day. There&amp;#8217;s something about statistics that doesn&amp;#8217;t create appropriately strong synapses in my brain. I got an A in stats in college, so I know I can retain the information long enough to be tested on it. But put me [...] Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/03/09/keno-odds.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5696" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="General" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/General/default.aspx" /></entry><entry><title>Getting Array Data from a Filtered List in VBA</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/03/08/getting-array-data-from-a-filtered-list-in-vba.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/03/08/getting-array-data-from-a-filtered-list-in-vba.aspx</id><published>2010-03-08T21:50:31Z</published><updated>2010-03-08T21:50:31Z</updated><content type="html">Getting data from an Excel sheet into an array is usually best accomplished with a statement that looks something like this:
vMyArray = Sheet1.UsedRange.Value
I thought it would be keen to fill an array from a filtered list, so I coded
Sub ArrFilteredList()
&amp;#160; &amp;#160; &amp;#160; &amp;#160; Dim vArr As Variant
&amp;#160; &amp;#160; &amp;#160; &amp;#160; vArr = Sheet1.UsedRange.SpecialCells(xlCellTypeVisible).Value
&amp;#160; &amp;#160; &amp;#160; [...] Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/03/08/getting-array-data-from-a-filtered-list-in-vba.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5693" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="Arrays" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/Arrays/default.aspx" /></entry><entry><title>Plain and Pretty</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/03/05/plain-and-pretty.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/03/05/plain-and-pretty.aspx</id><published>2010-03-05T11:30:44Z</published><updated>2010-03-05T11:30:44Z</updated><content type="html">Mike Alexander tells me that I have to sell, so sell I shall. First, the pretty: Microsoft MVPs Jon Peltier (Peltier Technical Services) and Mike Alexander (DataPig Technologies) are joining together again to bring you our acclaimed Excel Dashboard and Visualization Bootcamp!
This 3-day boot camp is designed for Excel users who need to more effectively synthesize [...] Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/03/05/plain-and-pretty.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5681" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="General" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/General/default.aspx" /></entry><entry><title>Office Automation</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/03/04/office-automation.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/03/04/office-automation.aspx</id><published>2010-03-04T13:00:58Z</published><updated>2010-03-04T13:00:58Z</updated><content type="html">Someone asked if anyone automates Office applications any more. That struck me as kind of funny. If I had to guess, I would guess that there are more lines of VBA code (poorly written or not) that automate Office applications than all the COBOL, VB6, PHP, and any other language you can think [...] Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/03/04/office-automation.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5680" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="Polls" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/Polls/default.aspx" /></entry><entry><title>PowerPivot - Part 3 of 4: Conditional Shape Colors</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/03/02/powerpivot-part-3-of-4-conditional-shape-colors.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/03/02/powerpivot-part-3-of-4-conditional-shape-colors.aspx</id><published>2010-03-03T02:13:11Z</published><updated>2010-03-03T02:13:11Z</updated><content type="html">Part 1: http://www.dailydoseofexcel.com/archives/2010/02/26/powerpivot-part-1-of-4/
Part 2: http://www.dailydoseofexcel.com/archives/2010/02/27/powerpivot-part-2-of-4-prepping-the-census-data/
As mentioned in the Part 1, I had developed this technique to conditionally color shapes some time ago. Based on customer feedback and my own experience I made changes to simplify the various connections required to make it all work.
Also, documenting the technique was easier to do with a webpage [...] Read...(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/03/02/powerpivot-part-3-of-4-conditional-shape-colors.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5676" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="General" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/General/default.aspx" /></entry><entry><title>Web Query Lessons</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/03/02/web-query-lessons.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/03/02/web-query-lessons.aspx</id><published>2010-03-02T14:57:31Z</published><updated>2010-03-02T14:57:31Z</updated><content type="html">I&amp;#8217;ve recently learned some things about Web Queries that I&amp;#8217;d like to share with you. But first a little background. You create a Web Query in Excel 2007 by clicking From Web on the Data tab. This launches a browser within Excel through which you navigate to a web page and select a [...] Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/03/02/web-query-lessons.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5671" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="External Data" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/External+Data/default.aspx" /></entry><entry><title>IsHex Function</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/03/01/ishex-function.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/03/01/ishex-function.aspx</id><published>2010-03-01T22:18:14Z</published><updated>2010-03-01T22:18:14Z</updated><content type="html">I have a need to verify some user input is hexadecimal (0-9 and A-F).
Public Function IsHex(sInput As String) As Boolean
&amp;#160; &amp;#160; &amp;#160; &amp;#160; Dim lResult As Long
&amp;#160; &amp;#160; &amp;#160; &amp;#160; On Error Resume Next
&amp;#160; &amp;#160; &amp;#160; &amp;#160; lResult = CLng(&amp;#34;&amp;#38;H&amp;#34; &amp;#38; sInput)
&amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; IsHex = sInput = &amp;#34;0&amp;#34; Or lResult &amp;#62; [...] Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/03/01/ishex-function.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5669" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="User Defined Functions" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/User+Defined+Functions/default.aspx" /></entry><entry><title>PowerPivot - Part 2 of 4: Prepping the census data</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/02/27/powerpivot-part-2-of-4-prepping-the-census-data.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/02/27/powerpivot-part-2-of-4-prepping-the-census-data.aspx</id><published>2010-02-27T21:24:35Z</published><updated>2010-02-27T21:24:35Z</updated><content type="html">Part 1: http://www.dailydoseofexcel.com/archives/2010/02/26/powerpivot-part-1-of-4/
Since Excel 2007 (and later) can handle a million rows of data, I figured it made sense to explore PowerPivot (PP) with a data set larger than that. In addition, I have had a long time curiosity about the US census data. So, this seemed an appropriate time to combine the [...] Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/02/27/powerpivot-part-2-of-4-prepping-the-census-data.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5663" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="General" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/General/default.aspx" /></entry><entry><title>PowerPivot - Part 1 of 4</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/02/26/powerpivot-part-1-of-4.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/02/26/powerpivot-part-1-of-4.aspx</id><published>2010-02-27T03:33:07Z</published><updated>2010-02-27T03:33:07Z</updated><content type="html">After the MVP Summit I was motivated to further explore a Microsoft add-in for Excel 2010 called PowerPivot. I don&amp;#8217;t know all its capabilities but at the very least it can analyze millions of rows of data. If you are using Excel 2010 you can download the add-in from http://www.microsoft.com/downloads/details.aspx?FamilyID=48a5b47b-8c9c-450f-ab6e-178600a733ca&amp;#038;displaylang=en
Do keep one thing [...] Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/02/26/powerpivot-part-1-of-4.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5660" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="General" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/General/default.aspx" /></entry><entry><title>Listing Formulas</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/02/26/listing-formulas.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/02/26/listing-formulas.aspx</id><published>2010-02-26T13:00:39Z</published><updated>2010-02-26T13:00:39Z</updated><content type="html">This code will list all the formulas in the selection in the Immediate Window.
Sub ListFormulas()
&amp;#160; &amp;#160; &amp;#160; &amp;#160; Dim rCell As Range
&amp;#160; &amp;#160; &amp;#160; &amp;#160; If TypeName(Selection) = &amp;#34;Range&amp;#34; Then
&amp;#160; &amp;#160; &amp;#160; &amp;#160; For Each rCell In Selection.Cells
&amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; &amp;#160; Debug.Print String(4, &amp;#34; &amp;#34;) &amp;#38; rCell.Address(0, 0), rCell.Formula
&amp;#160; &amp;#160; &amp;#160; &amp;#160; Next [...] Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/02/26/listing-formulas.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5655" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="VBA" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/VBA/default.aspx" /></entry><entry><title>Drawing in Excel</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/02/25/drawing-in-excel.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/02/25/drawing-in-excel.aspx</id><published>2010-02-25T16:02:16Z</published><updated>2010-02-25T16:02:16Z</updated><content type="html">Brad sent me a link to this cool YouTube video
http://www.youtube.com/watch?v=4YG_WWZYqUs Libro1? Is that Italian Excel?
Then there&amp;#8217;s this:
http://www.youtube.com/watch?v=8oR1_PA3yTw And you thought 3D charts were useless. Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/02/25/drawing-in-excel.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5651" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="General" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/General/default.aspx" /></entry><entry><title>Sheet Tab Colors</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/02/23/sheet-tab-colors.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/02/23/sheet-tab-colors.aspx</id><published>2010-02-24T02:16:02Z</published><updated>2010-02-24T02:16:02Z</updated><content type="html">CR rants:
One thing about Excel 2007 that really bugs me are the tab colors. Most of the choices look so washed out, rather than a nice solid color. One does not have a choice when Excel makes the tab text white or black. Sometimes, Excel chooses a white font for the text [...] Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/02/23/sheet-tab-colors.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5646" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="Formatting" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/Formatting/default.aspx" /></entry><entry><title>New RDBMail Mail add-in for Excel/Outlook 2007-2010</title><link rel="alternate" type="text/html" href="/blogs/daily_dose_of_excel/archive/2010/02/21/new-rdbmail-mail-add-in-for-excel-outlook-2007-2010.aspx" /><id>/blogs/daily_dose_of_excel/archive/2010/02/21/new-rdbmail-mail-add-in-for-excel-outlook-2007-2010.aspx</id><published>2010-02-21T12:33:38Z</published><updated>2010-02-21T12:33:38Z</updated><content type="html">Hi all
FYI
I upload a new add-in named RDBMail for Excel/Outlook 2007-2010 this week
http://www.rondebruin.nl/mail/add-in.htm
The add-in create a new tab on the Ribbon named RDBMail with a lot of mail options
and a option to insert a worksheet template to your workbook so you can send more then one
mail with one click because the info for each mail [...] Read More......(&lt;a href="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/2010/02/21/new-rdbmail-mail-add-in-for-excel-outlook-2007-2010.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://excelusergroup.org/aggbug.aspx?PostID=5629" width="1" height="1"&gt;</content><author><name>Anonymous</name><uri>http://excelusergroup.org/members/Anonymous/default.aspx</uri></author><category term="General" scheme="http://excelusergroup.org/blogs/daily_dose_of_excel/archive/tags/General/default.aspx" /></entry></feed>