<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2967511033337851542</id><updated>2011-11-27T17:22:25.360-08:00</updated><title type='text'>Excel 2007 Notes</title><subtitle type='html'>A collection of tips relating to Microsoft Excel 2007</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://excel2007tips.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2967511033337851542/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://excel2007tips.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Roy Cox</name><uri>http://www.blogger.com/profile/06742690367066296892</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2967511033337851542.post-4084782896263165375</id><published>2007-06-01T00:26:00.000-07:00</published><updated>2007-06-01T00:29:43.223-07:00</updated><title type='text'>Explore the Ribbon</title><content type='html'>Wondering where your favorite Excel 2003 commands are located in the new Excel 2007 interface? Or just want to explore the rich, new design with a little guidance?&lt;br /&gt;&lt;br /&gt;View this useful video tutorial here: &lt;a href="http://office.microsoft.com/en-us/excel/HA101491511033.aspx"&gt;http://office.microsoft.com/en-us/excel/HA101491511033.aspx&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2967511033337851542-4084782896263165375?l=excel2007tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excel2007tips.blogspot.com/feeds/4084782896263165375/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2967511033337851542&amp;postID=4084782896263165375' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2967511033337851542/posts/default/4084782896263165375'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2967511033337851542/posts/default/4084782896263165375'/><link rel='alternate' type='text/html' href='http://excel2007tips.blogspot.com/2007/06/explore-ribbon.html' title='Explore the Ribbon'/><author><name>Roy Cox</name><uri>http://www.blogger.com/profile/06742690367066296892</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2967511033337851542.post-6920037524873574058</id><published>2007-05-09T00:51:00.000-07:00</published><updated>2007-05-09T00:59:22.173-07:00</updated><title type='text'>No Application.Filesearch in 2007</title><content type='html'>In earlier versions Aplication.FileSearch could be used to loop through all the files contained in a Directory. This does not appear to work in 2007 versions. I have managed to use Dir to achieve this instead&lt;br /&gt;&lt;br /&gt;--------------------------------------------------------------------------------------' Module    : Module1&lt;br /&gt;' DateTime  : 09/05/2007 08:43&lt;br /&gt;' Author    : Roy Cox (royUK)' Website   : &lt;a href="http://www.excel-it.com/"&gt;www.excel-it.com&lt;/a&gt; for more examples and Excel Consulting&lt;br /&gt;' Purpose   : Open all worksheets in a specific folder' Disclaimer; This code is offered as is with no guarantees. You may use it in your'     projects but please leave this header intact.&lt;br /&gt;'---------------------------------------------------------------------------------------&lt;br /&gt;Option Explicit&lt;br /&gt;Sub Open_All_Files()   &lt;br /&gt;Dim oWbk As Workbook   &lt;br /&gt;Dim sFil As String   &lt;br /&gt;Dim sPath As String   &lt;br /&gt;&lt;br /&gt;sPath = "C:\Documents and Settings\Roy Cox\My Documents\" 'location of files   &lt;br /&gt;ChDir sPath   &lt;br /&gt;sFil = Dir("*.xlsx") 'change or add formats   &lt;br /&gt;Do While sFil &lt;&gt; "" 'will start LOOP until all files in folder sPath have been looped through        Set oWbk = Workbooks.Open(sPath &amp; "\" &amp;amp; sFil) 'opens the file                 &lt;br /&gt;&lt;br /&gt;' do something                &lt;br /&gt;oWbk.Close True 'close the workbook, saving changes       &lt;br /&gt;sFil = Dir   &lt;br /&gt;Loop          ' End of LOOP&lt;br /&gt;End Sub&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2967511033337851542-6920037524873574058?l=excel2007tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excel2007tips.blogspot.com/feeds/6920037524873574058/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2967511033337851542&amp;postID=6920037524873574058' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2967511033337851542/posts/default/6920037524873574058'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2967511033337851542/posts/default/6920037524873574058'/><link rel='alternate' type='text/html' href='http://excel2007tips.blogspot.com/2007/05/no-applicationfilesearch-in-2007.html' title='No Application.Filesearch in 2007'/><author><name>Roy Cox</name><uri>http://www.blogger.com/profile/06742690367066296892</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2967511033337851542.post-7789130724916746090</id><published>2007-05-07T08:56:00.000-07:00</published><updated>2007-05-07T09:14:02.620-07:00</updated><title type='text'>The Macro Recorder in Excel 2007</title><content type='html'>&lt;div&gt;&lt;a href="http://1.bp.blogspot.com/_ZyebSSDv_ag/Rj9P6IH_ZyI/AAAAAAAAABU/txIPzML_UhE/s1600-h/ribbon_elements.png"&gt;&lt;img id="BLOGGER_PHOTO_ID_5061852366219732770" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://1.bp.blogspot.com/_ZyebSSDv_ag/Rj9P6IH_ZyI/AAAAAAAAABU/txIPzML_UhE/s320/ribbon_elements.png" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;div&gt;Some users are under the impression that the macro recorder is no longer available in the 2007 version of Excel. This is not so. It is accessed from the Developer Tab, however the Developer Tab is hidden in a default installation and contains all the controls for recording macros, &lt;a href="http://3.bp.blogspot.com/_ZyebSSDv_ag/Rj9QGoH_ZzI/AAAAAAAAABc/2AnBNIsjco4/s1600-h/officebutton.bmp"&gt;&lt;img id="BLOGGER_PHOTO_ID_5061852580968097586" style="FLOAT: right; MARGIN: 0px 0px 10px 10px; CURSOR: hand" alt="" src="http://3.bp.blogspot.com/_ZyebSSDv_ag/Rj9QGoH_ZzI/AAAAAAAAABc/2AnBNIsjco4/s320/officebutton.bmp" border="0" /&gt;&lt;/a&gt;activating the VBA editor (VBE), using controls on the worksheet, xml data and the document panel. You can switch this on or off with a setting in Excel Options... (Office Button&gt;Excel Options&gt;Popular Tab and check 'Show Developer tab in the Ribbon'&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;a href="http://1.bp.blogspot.com/_ZyebSSDv_ag/Rj9McIH_ZvI/AAAAAAAAAA8/LsUFaRZ4NHk/s1600-h/ribbon_elements.png"&gt;&lt;img id="BLOGGER_PHOTO_ID_5061848552288773874" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://1.bp.blogspot.com/_ZyebSSDv_ag/Rj9McIH_ZvI/AAAAAAAAAA8/LsUFaRZ4NHk/s400/ribbon_elements.png" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;As with the other Tabs the Developer Tab is divided into Groups of Controls. Hover your Mouse over a Control to display a brief description of the Control. As you will see the Record macros is in the Controls Group.&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2967511033337851542-7789130724916746090?l=excel2007tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excel2007tips.blogspot.com/feeds/7789130724916746090/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2967511033337851542&amp;postID=7789130724916746090' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2967511033337851542/posts/default/7789130724916746090'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2967511033337851542/posts/default/7789130724916746090'/><link rel='alternate' type='text/html' href='http://excel2007tips.blogspot.com/2007/05/macro-recorder-in-excel-2007.html' title='The Macro Recorder in Excel 2007'/><author><name>Roy Cox</name><uri>http://www.blogger.com/profile/06742690367066296892</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ZyebSSDv_ag/Rj9P6IH_ZyI/AAAAAAAAABU/txIPzML_UhE/s72-c/ribbon_elements.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2967511033337851542.post-8122228806837185649</id><published>2007-05-07T06:50:00.000-07:00</published><updated>2007-05-07T07:02:31.097-07:00</updated><title type='text'></title><content type='html'>&lt;a href="http://4.bp.blogspot.com/_ZyebSSDv_ag/Rj8wp4H_ZtI/AAAAAAAAAAs/f8R72DPkNWI/s1600-h/office_button_cr.png"&gt;&lt;img id="BLOGGER_PHOTO_ID_5061818002186397394" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; CURSOR: hand" alt="" src="http://4.bp.blogspot.com/_ZyebSSDv_ag/Rj8wp4H_ZtI/AAAAAAAAAAs/f8R72DPkNWI/s320/office_button_cr.png" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;strong&gt;Creating a template in Excel 2007&lt;/strong&gt; &lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;Because of the new File Formats introduced with Microsoft Office 2007 you need to select the correct type of Workbook to save as in Excel 2007. This applies to creating an Excel 2007 Template. When you have finished designing your Workbook. follow these steps to save your new file as an Excel 2007 Template: Click on the &lt;a href="http://www.excel-it.com/office_button.htm" target="_blank"&gt;&lt;span style="color:#000000;"&gt;Office Button&lt;/span&gt;&lt;/a&gt; (see image above) to open the drop down menu&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;&lt;li&gt;Choose the Save As option&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Choose the Other formats option&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Choose the &lt;span style="color:#000000;"&gt;Save As&lt;/span&gt; option to open the Save As dialog box&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Click on the &lt;a href="http://www.excel-it.com/office_button.htm" target="_blank"&gt;Save as type&lt;/a&gt; option to open the drop down list&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Scroll through the list to find the template options&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;p&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;strong&gt;Template options in Excel 2007&lt;/strong&gt;&lt;br /&gt;There are three templates that can be created in Excel 2007:&lt;br /&gt;· Excel Template (*.xltx)&lt;br /&gt;· Excel Macro Enabled Template (*.xltm)&lt;br /&gt;· Excel 97 - 2003 Template (*.xlt)&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2967511033337851542-8122228806837185649?l=excel2007tips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://excel2007tips.blogspot.com/feeds/8122228806837185649/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2967511033337851542&amp;postID=8122228806837185649' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2967511033337851542/posts/default/8122228806837185649'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2967511033337851542/posts/default/8122228806837185649'/><link rel='alternate' type='text/html' href='http://excel2007tips.blogspot.com/2007/05/creating-template-in-excel-2007-because.html' title=''/><author><name>Roy Cox</name><uri>http://www.blogger.com/profile/06742690367066296892</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_ZyebSSDv_ag/Rj8wp4H_ZtI/AAAAAAAAAAs/f8R72DPkNWI/s72-c/office_button_cr.png' height='72' width='72'/><thr:total>0</thr:total></entry></feed>
