<?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>MakeUseOf &#187; microsoft word</title>
	<atom:link href="http://www.makeuseof.com/tags/microsoft-word/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Fri, 10 Feb 2012 21:31:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To Integrate Excel Data Into A Word Document</title>
		<link>http://www.makeuseof.com/tag/integrate-excel-data-word-document/</link>
		<comments>http://www.makeuseof.com/tag/integrate-excel-data-word-document/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 19:01:15 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[How-To Articles]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[microsoft excel]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[visual basic]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98678</guid>
		<description><![CDATA[During your work week, there are probably lots of times that you find yourself copying and pasting information from Excel into Word, or the other way around. This is how people often produce written reports based on data that’s accumulated and updated in an Excel spreadsheet. In this article, I’m going to dive a little more into the background VBA scripting that allows you to actually program connections between data in Excel and Word.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/womancomputer.png?323f2c" alt="" />During your work week, there are probably lots of times that you find yourself copying and pasting information from Excel into Word, or the other way around.</p>
<p>This is how people often produce written reports based on data that&#8217;s accumulated and updated in an Excel spreadsheet. We&#8217;ve offered a lot of really cool tips and tools for Excel over the years, such as Saikat&#8217;s article on producing <a href="http://www.makeuseof.com/tag/create-attractive-professional-charts-chart-tools-ms-word-2010/">professional looking charts</a>, and Steve&#8217;s article on cool <a href="http://www.makeuseof.com/tag/excel-project-management-tracking-templates/">Excel templates for project management</a>.</p>
<p>In this article, I&#8217;m going to dive a little more into the background VBA scripting that allows you to actually program connections between data that might be stored in an Excel file and Word documents where you may be producing reports.</p>
<p>It&#8217;s actually surprisingly easy to accomplish this once you know how to add the right references, and how to lay out the syntax of the background VBA code.</p>
<h2>Integrating Data From Excel Into Your Word Document</h2>
<p>In this example, I&#8217;m going to start out with a fairly simple Excel spreadsheet. In reality, the Excel file can consist of multiple spreadsheets with lots of data, it doesn&#8217;t matter.</p>
<p>So long as you know where the data resides in the spreadsheet, you&#8217;ll be able to reach in and grab it using VBA.</p>
<p>Here&#8217;s what my sample spreadsheet looks like. It&#8217;s a list of expense totals that have been calculated throughout the entire year.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword1a.png?323f2c" alt="" width="261" height="295" /></p>
<p>Now, lets say you have a manager that would like to see a nicely formatted report that describes the expenses, grouping together like items and laying it all out in a layout that&#8217;s a little more pleasing to the eye (and easier for the big boys upstairs to understand).</p>
<p>You can do this by incorporating objects like textboxes or labels into your Word document. When you&#8217;re in Word, just click on the <em>Developer</em> menu tab, and then select &#8220;<em>Design Mode</em>&#8221; in the Controls box. Use the <em>Legacy Tools</em> dropdown icon to find where you can insert labels into your document.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword1.png?323f2c" alt="" width="490" height="515" /></p>
<p>Once you have the label placed in the document where you want it (not always an easy task), you&#8217;re ready to program the data feed. But first you&#8217;ll need to name the label so that the VBA can identify it. Right click on the label and go into <em>Properties</em>. Find the <em>&#8220;(Name)&#8221;</em> field and call it something that you&#8217;ll remember.</p>
<p>Now, add a Command Button from the same Legacy Tools dropdown list, place it in your document, and double click it to open up the VBA editor. When you get your code working later, you can modify it so that the code runs on the Document Open() event. You&#8217;ll see that in the object dropdown boxes in the editor window.</p>
<p>To get started connecting Word to Excel, you&#8217;ll need to reference Excel. Click on <em>Tools</em>, and then <em>References</em>. Scroll down the list until you see the &#8220;<em>Microsoft Excel 12.0 Object Library</em>&#8221; and select it.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword4.png?323f2c" alt="" width="522" height="471" /></p>
<p>Once you&#8217;ve done this, the rest is just a matter of writing a ridiculously simple VBA script to pull in data from an Excel spreadsheet and automatically update the label caption with the data. Here&#8217;s how that works.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #E56717; font-weight: bold;">Private</span> <span style="color: #E56717; font-weight: bold;">Sub</span> CommandButton1_Click()
<span style="color: #151B8D; font-weight: bold;">Dim</span> objExcel <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #E56717; font-weight: bold;">New</span> Excel.Application
<span style="color: #151B8D; font-weight: bold;">Dim</span> exWb <span style="color: #151B8D; font-weight: bold;">As</span> Excel.Workbook
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> exWb = objExcel.Workbooks.<span style="color: #151B8D; font-weight: bold;">Open</span>(<span style="color: #800000;">&quot;c:\temp\expenses.xls&quot;</span>)
&nbsp;
ThisDocument.yrTotal.Caption = exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(12, 2)
&nbsp;
exWb.<span style="color: #8D38C9; font-weight: bold;">Close</span>
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> exWb = <span style="color: #00C2FF; font-weight: bold;">Nothing</span>
&nbsp;
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Sub</span></pre></div></div>

<p>See how that works? The &#8220;exWb&#8221; Excel application object opens the Excel file at the path you provide it, and it&#8217;ll go right into the specific sheet and cell number, extract the data, and place it into the Caption property of the label that you named &#8220;<em>yrTotal</em>&#8220;.</p>
<p>Here&#8217;s the VBA macro in action.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword5.png?323f2c" alt="" width="399" height="104" /></p>
<p>The hard part with dealing with labels in Word is that it&#8217;s sometimes hard to align it at the end of a sentence or alongside any other text.</p>
<p>One way of overcoming that is actually incorporating some of the text alongside the data in the VBA code itself.  As you can see here, I&#8217;ve put the static text right into the Caption when I create the label itself.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword6.png?323f2c" alt="" width="336" height="212" /></p>
<p>Now, all you have to do is include that text when you update the label with your VBA script, and just append the data from the Excel file to the end of that text. Here&#8217;s what that kind of code would look like.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #151B8D; font-weight: bold;">Dim</span> objExcel <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #E56717; font-weight: bold;">New</span> Excel.Application
<span style="color: #151B8D; font-weight: bold;">Dim</span> exWb <span style="color: #151B8D; font-weight: bold;">As</span> Excel.Workbook
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> exWb = objExcel.Workbooks.<span style="color: #151B8D; font-weight: bold;">Open</span>(<span style="color: #800000;">&quot;c:\temp\expenses.xls&quot;</span>)
&nbsp;
ThisDocument.yrTotal.Caption = exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(12, 2)
ThisDocument.totHotels.Caption = <span style="color: #800000;">&quot;Hotels: &quot;</span> &amp;amp; exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(5, 2)
ThisDocument.TotDining.Caption = <span style="color: #800000;">&quot;Dining Out: &quot;</span> &amp;amp; exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(2, 2)
ThisDocument.totTolls.Caption = <span style="color: #800000;">&quot;Tolls: &quot;</span> &amp;amp; exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(3, 2)
ThisDocument.totFuel.Caption = <span style="color: #800000;">&quot;Fuel: &quot;</span> &amp;amp; exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(10, 2)
&nbsp;
exWb.<span style="color: #8D38C9; font-weight: bold;">Close</span>
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> exWb = <span style="color: #00C2FF; font-weight: bold;">Nothing</span></pre></div></div>

<p>You can use the string concatenation &#8220;&amp;&#8221; symbol to place connect the static text with the data extracted from the Excel sheet. Here&#8217;s what the final results look like in the updated Word document.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword7.png?323f2c" alt="" width="542" height="328" /></p>
<p>Again, if you don&#8217;t want to have a big, ugly grey command button in your word document, just have the data-update script run on Document.Open(), and it&#8217;ll all take place behind the scenes.</p>
<p>In fact, in many cases you could create the initial document once, and then you&#8217;ll never have to create it again. All you&#8217;ll have to do is open it, and all of the labels will automatically update for you with the data from the updated Excel file. All you have to do is click to Print, and submit the report to your manager. A 30 minute report just turned into a 1 minute printout!</p>
<p>Can you think of any other cool uses for this data-integration technique using VBA? Share some of your own ideas and thoughts in the comments section below.</p>
<p><small><a href="http://image.shutterstock.com/display_pic_with_logo/59253/59253,1264063933,1/stock-photo-business-woman-in-office-using-desktop-computer-44970433.jpg" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/integrate-excel-data-word-document/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 MS Word Templates That Help You Brainstorm &amp; Mind Map Your Ideas Quickly</title>
		<link>http://www.makeuseof.com/tag/8-ms-word-templates-brainstorm-mind-map-ideas-quickly/</link>
		<comments>http://www.makeuseof.com/tag/8-ms-word-templates-brainstorm-mind-map-ideas-quickly/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 19:01:33 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[mindmaps]]></category>
		<category><![CDATA[organization tools]]></category>
		<category><![CDATA[study tips]]></category>
		<category><![CDATA[study tools]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=96049</guid>
		<description><![CDATA[Brainstorming your ideas visually helps with clarity and allows you to connect ideas and interlink them together. That’s where mindmapping took off. You might know zilch about it, but even age old habits of doodling your ideas is better than a blank page. But you don’t have to draw aimlessly because MS Word offers you a few free templates to structure your ideas and sharpen your thought process.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/brainstorm.jpg?323f2c" alt="mind map template for word" />We have featured quite lot of online and offline ways to brainstorm and <a href="http://www.makeuseof.com/tags/mindmaps/">mindmap</a>. But when you want to jot down your ideas quickly then there’s nothing quite like a simple piece of paper and pen…or its digital equivalent – a document processor. That’s what we saw when we <a href="http://www.makeuseof.com/tag/build-mind-map-microsoft-word/">built a mind map in Microsoft Word</a>.</p>
<p><a href="http://www.makeuseof.com/tag/5-ways-generate-ideas-brainstorming-apps/">Brainstorming</a> your ideas visually helps with clarity and allows you to <em>connect</em> ideas and interlink them together. That’s where mindmapping took off. You might know zilch about it, but even age old habits of doodling your ideas is better than a blank page. But you don’t have to draw aimlessly because MS Word offers you a few free templates to structure your ideas and sharpen your thought process.</p>
<p>Let’s fire up MS Word and take a look at 8 free <a href="http://office.microsoft.com/en-us/templates-presentations-spreadsheets-documents-calendars-more-FX101741961.aspx">Office.com templates</a> that help you generate ideas with Microsoft Word. You can use the search field to get to the template if you have a specific term; you can drill down the categories; or you can follow the links below.</p>
<h2><a href="http://office.microsoft.com/en-us/templates/CT010144349.aspx?tl=2#ai:TC101887891|">Story Map Templates</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/word-template01.png?323f2c" alt="mind map template for word" width="550" height="448" /></p>
<p>The Story Map template looks suitable for writers who are trying to outline a plot. Alternatively, it can be used by students, as intended to plan out a narrative. But it can also be used to plan out a team role-play for a given situation when you are trying to connect a solution to the underlying problem by assigning specific roles to team members.</p>
<h2><a href="http://office.microsoft.com/en-us/templates/process-chart-TC101887893.aspx">Process Chart</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/word-template02.png?323f2c" alt="mind map for word" width="550" height="351" /></p>
<p>This is a very simple step-by-step chart that can be used to describe the flow of a process. You can use the process chart to break down a complex event into a sequence of smaller action steps.</p>
<h2><a href="http://office.microsoft.com/en-us/templates/results.aspx?ck=1&amp;ex=2&amp;qu=Event%20Map&amp;av=zwd140#ai:TC101887907|">Event Map</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/word-template03.png?323f2c" alt="mind map for word" width="550" height="448" /></p>
<p>I have tried using this Word template while plotting the idea for a short story – and it worked. Along with the Story Map template, the Event Map can be a useful tool for beginner writers.</p>
<h2><a href="http://office.microsoft.com/en-us/templates/results.aspx?ck=1&amp;ex=2&amp;qu=map&amp;av=zwd140#ai:TC101887890%7C">Spider Map</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/word-template04.png?323f2c" alt="mind map for word" width="550" height="448" /></p>
<p>The Spider Map is a little like a conventional mind map. The large central circle represents your main idea, and the branching linear lines can be used to jot down the subsidiary ones. The description says that you can use the spider map to investigate various aspects of a single topic or just to organize their thoughts about a subject.</p>
<h2><a href="http://office.microsoft.com/en-us/templates/CT001143944.aspx?av=zwd#pg:4%7Cai:TC101887889%7C">Umbrella Chart</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/word-template05.png?323f2c" alt="word template mind maps" width="550" height="448" /></p>
<p>To be frank, I haven’t figured out a way to use this MS Word template effectively yet, so I have yet to find out how versatile this graphic organizer is. The description says that you can arrange the details of any subject or topic using this visual aid. What I have learnt is that the umbrella chart can be used to represent a core idea and the subordinate ideas around the spokes.</p>
<h2><a href="http://office.microsoft.com/en-us/templates/CT001143944.aspx?av=zwd#pg:4%7Cai:TC101887895%7C">KWL Chart</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/word-template06.png?323f2c" alt="word template mind maps" width="550" height="448" /></p>
<p>Using this simple columnar template, you can easily track what someone (or you) knows (K), wants to know (W), and has learned (L) about a subject. It’s a very handy aid for studying and also if you are trying to research something. <a href="http://en.wikipedia.org/wiki/KWL_table">Wikipedia</a> has a more detailed explanation on its use, and as it says the KWL template can be used to reduce repetition by leaving out prior knowledge and focusing on the W (wants to know). Based on this, students can concentrate on what exactly they want to learn or how and where they want to learn it from.</p>
<h2><a href="http://office.microsoft.com/en-us/templates/CT001143944.aspx?av=zwd#pg:5%7Cai:TC101887892%7C">T-Chart</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/word-template07.png?323f2c" alt="" width="550" height="490" /></p>
<p>Every issue has two sides and this template helps you to examine both sides of the same coin. The T-chart is a graphic organizer that can be used to look at different viewpoints and broaden your view on an issue. Anything that can be broken down into two opposing views can be stated using the T-chart.</p>
<h2><a href="http://office.microsoft.com/en-us/templates/CT001143944.aspx?av=zwd#pg:4%7Cai:TC101887898%7C">Fishbone Diagram</a></h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/word-template08.png?323f2c" alt="mind map template for word" width="550" height="347" /></p>
<p>The Fishbone diagram came out of Japan (not surprisingly). Also called <a href="http://en.wikipedia.org/wiki/Ishikawa_diagram">Ishikawa diagrams</a>, they are somewhat advanced idea organizers in comparison to the others we have on this list. This diagram analyzes the relationship between a cause and its effect. You can use it to drill down into the root cause of a problem by organizing a complex cause-effect event into categories. The Fishbone diagram is widely used in quality control.</p>
<p>The templates are mere tools. Ideas and brainstorming effectiveness will depend on how well you put them on paper or on the screen. But MS Word and its gallery of templates give you easily downloadable files that can be turned into idea organizers in a flash. Customize the templates by changing the text labels and/or adding to the sections.</p>
<p>Are you a <a href="http://www.makeuseof.com/tags/brainstorm/">brainstorming</a> kind of guy? Tell us how you go about it and tell us especially if <a href="http://www.makeuseof.com/tags/microsoft-word/">MS Word</a> is on your list of tools. What do you think of these brainstorming capable templates?</p>
<p><small>Image Credit: <a href="http://www.shutterstock.com/pic.mhtml?id=80873755" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/8-ms-word-templates-brainstorm-mind-map-ideas-quickly/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Microsoft Releases Temporary Fix For Duqu Virus [News]</title>
		<link>http://www.makeuseof.com/tag/microsoft-releases-temporary-fix-duqu-virus-news/</link>
		<comments>http://www.makeuseof.com/tag/microsoft-releases-temporary-fix-duqu-virus-news/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 19:17:38 +0000</pubDate>
		<dc:creator>Matt Smith</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[virus]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=91442</guid>
		<description><![CDATA[Several days ago we reported that a nasty new Windows bug had been found. It is particularly nasty for two reasons – it involves a previously unknown exploit, and it may be the brainchild of the same group that developed Stuxnet. Now, Microsoft has released a temporary fix. The fix is not a patch, but rather a workaround.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/11/duqufixthumb.jpg?323f2c" alt="" />Several days ago <a href="http://www.makeuseof.com/tag/microsoft-word-bug-linked-duqu-virus-news/">we reported that a nasty new Windows bug</a> had been found. It is particularly nasty for two reasons – it involves a previously unknown exploit, and it may be the brainchild of the same group that developed <a href="http://www.makeuseof.com/tech-fun/stuxnet-anatomy-computer-virus/">Stuxnet</a>.</p>
<p>Now, Microsoft has released a temporary fix. The fix is <em>not</em> a patch, but rather a workaround that involves using the command prompt to disable access to T2EMBED.DLL. Alternatively, <a href="http://support.microsoft.com/kb/2639658">users can have this taken care of automatically</a> with the Microsoft Fit It utility.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/11/duqufix1.png?323f2c" alt="" width="560" height="239" /></p>
<p>Microsoft warns that using the workaround will cause embedded <a href="http://www.makeuseof.com/tag/10-cool-free-computer-fonts-stand/">font </a>technology to no longer work correctly. Applications that use it will &#8220;fail to display properly&#8221;. Microsoft does not elaborate, but this most likely means embedded fonts will not appear and instead be replaced by a default font. Webpages sometimes use font embedding to allow users to view web text in a font that’s not installed on the user’s computer, for example.</p>
<p>While the workaround does provide temporary protection, a patch is being developed to close the exploit and allow for safe use of embedded fonts. It will be release automatically via Windows Update once it becomes available. No release date has been promised.</p>
<p>For our readers at home, our original advice &#8211; don’t open Word documents found in emails &#8211; is a perfectly adequate solution. Businesses with multiple computers, however, would be wise to use this fix.</p>
<p><small>Source: <a href="http://www.guardian.co.uk/technology/2011/nov/04/microsoft-temporary-fix-duqu-virus" rel="nofollow">The Guardian</a>, <a href="http://technet.microsoft.com/en-us/security/advisory/2639658" rel="nofollow">Microsoft Security TechCenter</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/microsoft-releases-temporary-fix-duqu-virus-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Word Bug Linked To Duqu Virus [News]</title>
		<link>http://www.makeuseof.com/tag/microsoft-word-bug-linked-duqu-virus-news/</link>
		<comments>http://www.makeuseof.com/tag/microsoft-word-bug-linked-duqu-virus-news/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 20:03:24 +0000</pubDate>
		<dc:creator>Dave LeClair</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[virus]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=91244</guid>
		<description><![CDATA[A new virus is making the rounds, and this one has the potential to be very serious. The Duqu virus has source code similar to Stuxnet, which was believed to have played havoc with Iran's nuclear program. Everyone is looking to unlock the secret behind this serious virus, but for now it looks like it is being linked with a piece of software downloaded from corrupted Microsoft Word documents.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/antivirus.jpg?323f2c" alt="" />A new virus is making the rounds, and this one has the potential to be very serious. The Duqu virus has source code similar to Stuxnet, which was believed to have played havoc with Iran&#8217;s nuclear program. Everyone is looking to unlock the secret behind this serious virus, but for now it looks like it is being linked with a piece of software downloaded from corrupted Microsoft Word documents. If you receive any Word documents from an unknown party, do not open them.</p>
<p>Basically, this virus enters your system and could potentially allow malicious individuals into your system where they can take control and take all kinds of data. This would obviously be especially bad if you have credit card information on your computer or if the virus ends up on the system of a corporation where there can be all kinds of private data. Worse still, they could target government, similar to Stuxnet.</p>
<p>This virus could very well be made by the same people who made Stuxnet, or at the very least, their source could have been stolen to create this Duqu virus.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/11/ms-duqu-bug.jpg?323f2c" alt="" width="450" height="238" /></p>
<p>As of now, there is no fix for this virus. For the time being, we suggest that all of our users be <strong>extremely</strong> wary of all Word documents they receive, especially if you don&#8217;t know the person who sent it.</p>
<p><small>Source: <a href="http://www.reuters.com/article/2011/11/01/us-microsoft-cyberattack-idUSTRE7A06ZX20111101" rel="nofollow">Reuters</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/microsoft-word-bug-linked-duqu-virus-news/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How You Can Use The Document Map Feature Of MS Word As A Time Saver</title>
		<link>http://www.makeuseof.com/tag/document-map-feature-ms-word-time-saver/</link>
		<comments>http://www.makeuseof.com/tag/document-map-feature-ms-word-time-saver/#comments</comments>
		<pubDate>Wed, 12 Oct 2011 15:31:51 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[microsoft office]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=88897</guid>
		<description><![CDATA[If you are not a power user on MS Word, I am assuming that you haven’t heard about the Document Map. The Document Map is one of those little features tucked away in MS Word. The Document Map helps you navigate through a long Word document and access different parts of it.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/word.jpg?323f2c" alt="document map word" />If you are not a power user on MS Word, I am assuming that you haven’t heard about the Document Map. The Document Map is one of those little features tucked away in MS Word. For our examination into the Document Map and how we can use it for better document management, we take it up on MS Word 2010.</p>
<p>The Document Map is a separate display (in the form of a left-sided pane) that helps you navigate through a long Word document and access different parts of it. Think of it as a jumping off point for reaching different sections in your document. It is almost a control center for moderating different parts of document.</p>
<p>Let’s put the definitions aside and look at how it can help us become better office workers and writers.</p>
<h2>How Does The Document Map Help Us?</h2>
<p>The Document Map does not help us to write better. But it does help us a lot when it comes to format our writing quickly by applying different visual styles easily. More than that, the Document Map really comes into its own when you have a long document and you need a ‘navigational guide’ to move around it. It is the <em>map</em> of your document. It is not a table of contents list though.</p>
<h2>The Microsoft Definition Of The Document Map</h2>
<p>Here’s how The Document Map is described by the guys at <a href="http://office.microsoft.com/en-us/word-help/about-the-document-map-HP005235051.aspx">Microsoft Office</a>.</p>
<p>The Document Map is a separate pane that displays a list of headings in the document. Use the Document Map to quickly navigate through the document and keep track of your location in it.</p>
<h2>Switch On The Document Map</h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/DocMap01.jpg?323f2c" alt="document map word" width="580" height="345" /></p>
<p>Getting to the Document Map is a simple as clicking on the <em>View – Navigation</em> Pane in MS Word 2010. In Word 2007 and earlier versions, you can click on <em>View – Document Map</em>. Alternatively, you can use the shortcut of <em>Alt – V –D</em>.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/DocMap02.jpg?323f2c" alt="document map" width="452" height="199" /></p>
<p>As in the screen above, it is the small icon that says – <em>Browse the headings in your document</em>. Strangely, it’s not called the Document Map in Word 2010, but we will keep using that.</p>
<h2>Uses Of The Document Map</h2>
<p>Now, that we have nailed down the location of the Document Map, let’s also peg down a few uses we can put it to.</p>
<h3>Display All Headings</h3>
<p>If you have applied the heading styles to your documents (by using the Styles in the Home tab), the Document Map lists all document headings in the navigation pane. Subordinate heading levels are displayed in a hierarchical manner.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/DocMap03.jpg?323f2c" alt="document map" width="543" height="313" /></p>
<h3>Jump From One Heading To The Other</h3>
<p>For particularly large documents, using the navigation pane is a time-saver as you can hop from one heading to the other with a click.</p>
<h3>See Where You Are</h3>
<p>It’s easy to lose track of exactly where you are in a large document. With the navigation pane/Document Map open, you can see that the section is highlighted in orange as you move from one part to the next.</p>
<h3>Quickly Change The Heading Levels</h3>
<p><strong></strong>Changing the structure of your document is easy as a right-click with the document map. With the headings displayed, you can click on Heading Level 2 and <em>promote</em> it to a Heading Level 1. That is you can change the hierarchy of the paragraphs quickly. You can just as easily <em>demote</em> one section of text under a heading level and bring it under another.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/10/DocMap04.jpg?323f2c" alt="document map word" width="422" height="297" /></p>
<h3>Drag Headings Around To Rearrange Your Document</h3>
<p>Like to re-organize your document in jiffy. Simply select the paragraph (i.e. the heading level) and drag it to another location. All heading levels and paragraphs nested under it (i.e. at a lower-level to it) will move along with it.</p>
<h3>A Few More Document Organization Aids</h3>
<p>As you can see in the right-click menu of the navigation pane, you can select a section of a document and print the heading and the content. The Document Map is also a quick way to outline your document by adding new heading levels and filling them up with content.</p>
<p>Document Map is a great tool to exploit if you like working with multi-page Word files and document styles. You can go and re-organize your old MS Word documents using the Document Map and the Navigation pane. With it, you don’t need to scroll down, but simply glance through the hierarchical list of headings to find the important tidbit of information. It lets you see how the whole document pans out.</p>
<p>Do you use the Document Map and the Navigation Pane? Were you aware of this <a href="http://www.makeuseof.com/tags/microsoft-office/">MS Office</a> and <a href="http://www.makeuseof.com/tags/microsoft-word/">MS Word</a> productivity tip?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/document-map-feature-ms-word-time-saver/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Clip Web Page Notes from Firefox to Word with Notesaver!</title>
		<link>http://www.makeuseof.com/tag/clip-notes-firefox-word-document-notesaver/</link>
		<comments>http://www.makeuseof.com/tag/clip-notes-firefox-word-document-notesaver/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 16:30:24 +0000</pubDate>
		<dc:creator>Danny Stieben</dc:creator>
				<category><![CDATA[Browser Tips & Tricks]]></category>
		<category><![CDATA[firefox addons]]></category>
		<category><![CDATA[firefox tips]]></category>
		<category><![CDATA[microsoft office]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[note taking]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[webnotes]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=84765</guid>
		<description><![CDATA[Some people choose to bookmark all the pages that they find temporarily useful for whatever project they may be working on, while others go through the long, common processes. Going to the page in Firefox, copying it, opening Word, pasting the content into Word, and then saving it. You can shortcut this process by using Notesaver, a Firefox add-on.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/notesaver_intro.jpg?323f2c" alt="clip notes from web pages" />We&#8217;ve all probably had to do something like this at one point or another, especially students. Taking notes about information that we find online can be very beneficial, and having a local copy of the exact information that you need can save some time (and possibly your butt).</p>
<p>Some people choose to bookmark all the pages that they find temporarily useful for whatever project they may be working on, while others go through the long, common processes. Going to the page in <a href="http://www.makeuseof.com/tags/firefox">Firefox</a>, copying it, opening Word, pasting the content into Word, and then saving it.</p>
<p>Instead, there&#8217;s a better way to do things, and the first step to that is to install this nifty Firefox add-on called <strong>Notesaver</strong>.</p>
<h2>Getting Started</h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/notesaver_menu.jpg?323f2c" alt="clip notes from web pages" width="580" height="392" /><br />
The said add-on, named &#8220;Notesaver!&#8221;, can be installed by visiting <a href="https://addons.mozilla.org/en-US/firefox/addon/notesaver/">this page</a> in the Firefox add-ons collection, and will be active once you restart the browser. The page says that the add-on is for Windows only, but I&#8217;m not sure if it could be used on other operating systems as well because it doesn&#8217;t require the use of Word itself.</p>
<p>Once that completes, you&#8217;ll see that there isn&#8217;t a special button for Notesaver to be seen anywhere. Instead, you&#8217;ll only see it right when you need it. Whenever you right-click while in the browser, you&#8217;ll get your usual list of options that Firefox provides along with a new option called &#8220;capture&#8221;.</p>
<h2>Menu Options</h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/notesaver_options.jpg?323f2c" alt="web page notes firefox" width="580" height="332" /><br />
Going further into this menu will lead you to two options:</p>
<p>If you don&#8217;t have anything highlighted when you right-click, the first one is <em>CREATE_FILE</em>, which will create a new, empty Word document.</p>
<p>The second option will be <em>File Options</em>, which will let you change the order of the most recent files created that are shown (more on that later).</p>
<p>If you did have something highlighted when you right-clicked, you&#8217;ll only see one option named <em>DEFAULT_FILE</em>. If you haven&#8217;t done so already, clicking on <em>DEFAULT_FILE</em> will result in the add-on asking you to set the default path of your Word documents, along with options to change the number of recent files that should be be shown, and whether or not the date and time should be appended to the end of whatever you&#8217;re saving.</p>
<h2>Useful Tips</h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/notesaver_testingfile.jpg?323f2c" alt="clip notes from web pages" width="580" height="332" /><br />
If you keep saving content by clicking on <em>DEFAULT_FILE</em>, you&#8217;ll see everything you saved in the default.doc file.</p>
<p>However, you can right-click when nothing is highlighted, and choose the <em>CREATE_FILE</em> option to create a new one, and then when you try to save content again you&#8217;ll see two options, the default file and the newly-created file.</p>
<p>The number of files shown that you could adjust earlier is talking about this list right here. Whenever you highlight something and then right-click, you&#8217;ll see up to the number of files chosen in the settings. Note that these settings can also be changed via the <em>Firefox button &#8211;&gt; Add-ons &#8211;&gt; Extensions &#8211;&gt; Notesaver! &#8211;&gt; Options</em>.</p>
<h2>Conclusion</h2>
<p>There&#8217;s really not much else about this add-on, which is good because there won&#8217;t be any extra fat that you&#8217;ll have to ignore when you use it. It&#8217;s simplistic, and works great for when you need it. Saving highlighted content to a Word document can be a major plus for some people, who may need to work with Word anyways, and having the content already saved to a local file would be the best option.</p>
<p>For some people it might be beneficial simply because they would rather not use cloud services like Google Docs or Evernote to store their clipped content. Whatever the reason, this add-on definitely enables you to work as efficiently as you wish. If Notesaver isn&#8217;t quite what you&#8217;d like, you can also check out other recommendations such as <a href="http://www.makeuseof.com/dir/scribbly-notes-surfing-web-firefox-addon/">Scribbly</a>, or choose one by looking through <a href="http://www.makeuseof.com/tags/notes/">this list</a>.</p>
<p><small>Image Credit: <a rel="nofollow" href="http://www.shutterstock.com/pic-61742551.html">Shutterstock</a></small?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/clip-notes-firefox-word-document-notesaver/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Customize The MS Word 2010 Ribbon By Adding Your Own Tab With Commands You Use Most Often</title>
		<link>http://www.makeuseof.com/tag/customize-ms-word-2010-ribbon-adding-tab-commands/</link>
		<comments>http://www.makeuseof.com/tag/customize-ms-word-2010-ribbon-adding-tab-commands/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 18:31:24 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[microsoft office]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=83839</guid>
		<description><![CDATA[We have seen quite a few ways to tweak MS Office 2010 for our own productive ends. Granted, the whole MS Office suite is a productivity tool to begin with, but there’s still some spanner work you can do to make it more personalized. In this Word tutorial, we improve our workflow by adding a favorites tab to the Ribbon with all our frequently used commands.]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/word.jpg" /><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/word.jpg?323f2c" alt="customize word 2010 ribbon" />We have seen quite a few ways to tweak MS Office 2010 for our own productive ends. Granted, the whole MS Office suite is a productivity tool to begin with, but there’s still some spanner work you can do to make it more personalized.</p>
<p>We have seen ways to <a href="http://www.makeuseof.com/tag/basic-tutorial-customize-ms-office-2010-quick-access-toolbar/">customize the MS Office Quick Access toolbar</a>, we saw how to <a href="http://www.makeuseof.com/tag/add-tabs-microsoft-office-improve-document-management/">add tabs to MS Office</a> and improve your document management, and we even went retro by getting back the <a href="http://www.makeuseof.com/tag/ubitmenu-%E2%80%93-bring-back-the-classic-menu-to-microsoft-office-2007/">classic ribbon-less look</a>. In this Word tutorial on how to customize the Word 2010 ribbon, we stay devoted to the Ribbon, but improve our workflow by adding a favorites tab to the Ribbon with all our frequently used commands. Let’s fire up MS Word 2010 (this works for other MS Office applications too).</p>
<h2>Your Own Favorites Tab Improves Your Workflow</h2>
<p>You cannot change the default tab and groups on the Ribbon. But it’s very easy to add your own tab (and your own groups) with all your chosen commands. For example, there might be a task you do day in and day out. You might want to do it with as few clicks as possible. Customizing your own tab with the oft-used commands helps with your workflow. For example, I am a writer and blogger. Here’s how I would go about setting up a new tab on the Ribbon.</p>
<h2>5 Steps To My Own Tab On The Ribbon</h2>
<ul>
<li>Select <em>File &#8211; Options – Customize Ribbon</em>. Or you can right-click on Ribbon and choose <em>Customize the Ribbon</em>.</li>
</ul>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/word-customize-ribbon01.jpg?323f2c" alt="customize word 2010 ribbon" width="473" height="442" /></p>
<ul>
<li>Click on <em>New Tab</em> and then <em>Rename</em> if you want to rename it to something that’s more interesting than the dull ‘<em>New Tab</em>’.</li>
</ul>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/word-customize-ribbon02.jpg?323f2c" alt="customize word 2010" width="498" height="486" /></p>
<ul>
<li>This tab is now your own. You can start populating them with commands. You can also create <em>Groups</em> for similar commands grouped together. Naming groups allows you to choose symbols from the dialog box.</li>
</ul>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/word-customize-ribbon03.jpg?323f2c" alt="customize word 2010" width="580" height="257" /></p>
<ul>
<li>Commands can be picked up from and added to the groups from the list on the left which says – <em>Choose commands from</em>. To view all the commands available for you to pick, click the dropdown and select <em>All Commands</em>.</li>
<li>Select the command and click on <em>Add</em> to move under the particular group. As you can see in the above screen, I have selected commands that help me with my writing.</li>
<li>Use the arrow keys to arrange the commands in the order you want. Also, you can rearrange the entire tab order with the same arrow keys.</li>
</ul>
<h2>Oops…I Made A mistake</h2>
<p>If you made a mistake or you just want to get back the original look, click on <em>Reset</em> to reset all customizations.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/word-customize-ribbon06.jpg?323f2c" alt="customize word 2010" width="412" height="151" /></p>
<h2>Export Your Ribbon Customizations</h2>
<p>You can export all your hard work to another computer (say, if a colleague likes your tab groups). Click <em>Import/Export</em> &#8211; Select <em>Export All Ribbon And Quick Access Toolbar Customizations</em>. Type in a name for your customizations file and click <em>Save</em>. The file is saved with an <em>&#8220;.exportedUI</em>&#8221; extension.</p>
<p>The customization file can be imported via the same button.</p>
<h2>Free Customized Ribbons Available For Download</h2>
<p>Microsoft Office 2010 has taken user feedback and has packaged the most commonly used commands in a Favorites file for all programs under the Office suite. This is how the Word 2010 customized Ribbon file looks like:</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/word-customize-ribbon05.jpg?323f2c" alt="customize word 2010 ribbon" width="580" height="90" /></p>
<p>The file is available <a href="http://office.microsoft.com/en-us/excel-help/redir/XT101885841.aspx?CTT=5&amp;origin=HA101885823">here</a>. You can read more about it on <a href="http://office.microsoft.com/en-us/excel-help/download-free-customized-ribbons-HA101885823.aspx">Microsoft’s Office blog</a> and also download the ones available for the other programs.</p>
<p>Do you feel that the Ribbon is friendlier now? Have you set up your own customized tab for productivity? Tell us about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/customize-ms-word-2010-ribbon-adding-tab-commands/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Customize The MS Office 2010 Quick Access Toolbar</title>
		<link>http://www.makeuseof.com/tag/basic-tutorial-customize-ms-office-2010-quick-access-toolbar/</link>
		<comments>http://www.makeuseof.com/tag/basic-tutorial-customize-ms-office-2010-quick-access-toolbar/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 18:31:10 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[microsoft office]]></category>
		<category><![CDATA[microsoft word]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=82494</guid>
		<description><![CDATA[The Quick Access Toolbar has been a part of MS Office since the 2003 version, but it has come to the forefront since the introduction of MS Office 2007 and more prominently with MS Office 2010. You can enhance your productivity with two quick and easy changes to the Quick Access Toolbar.]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/06/office-tab-intro.jpg" /><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/06/office-tab-intro.jpg?323f2c" alt="office quick access toolbar"/>The <strong>Quick Access Toolbar</strong> has been a part of MS Office since the 2003 version, but it has come to the forefront since the introduction of MS Office 2007 and more prominently with MS Office 2010. The Quick Access Toolbar is a customizable toolbar that houses the common commands &#8211; Save, Undo and Redo. Faithful to its name and function, the Quick Access Toolbar is there at the same spot irrespective of the Ribbon tab you are working on.</p>
<p>You can enhance your productivity with two quick and easy changes to the Quick Access Toolbar –</p>
<p>1. Change the location of the Quick Access Toolbar.</p>
<p>2. Customize the Quick Access Toolbar by adding new commands.</p>
<p>This Quick Access Toolbar is common to all applications under MS Office. The first step won’t change, but obviously adding new commands will depend on the application and the use. We use MS Word 2010 to show the steps.</p>
<h2>Move the Quick Access Toolbar below the Ribbon</h2>
<p>If the default location of the toolbar is a bit on the summit for you and above your eye-level, you can move it just below the Ribbon. Click the downward pointing arrow (Customize Quick Access Toolbar) and click on <em>Show Below the Ribbon</em>.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/quick-access-toolbar.png?323f2c" alt="office quick access toolbar" width="419" height="365" /></p>
<p>Note that this reduces your working area by a bit. Looks a bit too cramped? Click on the arrow again and move it to its original location.</p>
<h2>Add your oft used commands to the Quick Access Toolbar</h2>
<p>There are two ways to add new commands to the Quick Access Toolbar and both are quick.</p>
<p>You can add commands to the toolbar from any of the Ribbon Tabs. Select the tab from where you want to pick the command. Right-click the command and then click on <em>Add to Quick Access Toolbar </em>on the menu.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/quick-access-toolbar02.png?323f2c" alt="customize office toolbar" width="485" height="227" /></p>
<p>To add non-Ribbon commands to the toolbar, you need a few more steps. But they are just as simple:</p>
<p>Again, click the <em>Customize Quick Access Toolbar</em> button and then select the <em>More Commands</em> option that’s right at the foot of the list.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/quick-access-toolbar03.png?323f2c" alt="customize office toolbar" width="525" height="378" /></p>
<p>The Quick Access Toolbar options are displayed. This dialog has the master list of all the commands you can expect to find and use for that particular MS Office program. The box on the right displays the commands that are currently on the toolbar.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/quick-access-toolbar04.png?323f2c" alt="customize office toolbar" width="580" height="331" /></p>
<p>The box on the left (<em>Choose commands from</em>) displays the <em>Popular Commands</em>. You can go through the list and add the desired ones by selecting them and clicking on the <em>Add</em> button. But just click on the dropdown and see what more options it throws up.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/quick-access-toolbar05.png?323f2c" alt="office quick access" width="338" height="340" /></p>
<p>You might like to take this route and select a few commands which you won’t find on the Ribbon conveniently. You have a long list of choices. Just to give you an example: as a writer, I like to keep MS Word’s writing tools close by instead of digging through the Ribbon. Choosing commands like Grammar, Grammar Settings, Formatting Consistency Check, Spelling Recheck etc. does a bit for boosting productivity.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/quick-access-toolbar06.png?323f2c" alt="office quick access toolbar" width="523" height="159" /></p>
<p>You can also customize a set of commands for a particular document (or by default, for all documents). Customizations can be reset easily with a click on the Reset button. You can re-order the commands using the <em>Move Up</em> and <em>Move Down</em> buttons on the Quick Access toolbar.</p>
<p>There are only two things you cannot do – increase the size or change the icon of the buttons on the toolbar. Other than that, you can really set up MS Office and any of its programs for a productivity boost with the Quick Access Toolbar.</p>
<p>We have seen its use in some of our previous <a href="http://www.makeuseof.com/tags/microsoft-office/">MS Office</a> and <a href="http://www.makeuseof.com/tags/microsoft-word/">MS Word</a> tutorials:</p>
<p><a href="http://www.makeuseof.com/tag/3-ways-to-strip-formatting-from-text-in-ms-word-2007/">3 Ways To Strip Formatting From Text in MS Word 2007</a><br />
<a href="http://www.makeuseof.com/tag/simple-calculations-microsoft-word-2003-2007/">How To Do Simple Calculations In Microsoft Word 2003 &#038; 2007</a><br />
<a href="http://www.makeuseof.com/tag/how-to-turn-ms-word-2007-into-a-minimalist-text-editor/">How To Turn MS Word 2007 Into A Minimalist Text Editor</a></p>
<p>Also get our <a href="http://www.makeuseof.com/tag/download-microsoft-office-2010-ultimate-tips-tricks/">Microsoft Office 2010: Ultimate Tips &#038; Tricks </a>free eBook for more  interesting lessons.</p>
<p>Tell us if you have ever bothered to play around with the toolbar or have left it alone with its three default commands.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/basic-tutorial-customize-ms-office-2010-quick-access-toolbar/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Make A Fillable Form In Word 2010 &amp; Collect Data The Easy Way</title>
		<link>http://www.makeuseof.com/tag/fillable-form-word-2010-collect-data-easy/</link>
		<comments>http://www.makeuseof.com/tag/fillable-form-word-2010-collect-data-easy/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 17:30:06 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[microsoft office]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[office worker]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=81607</guid>
		<description><![CDATA[As every day users we usually treat MS Office in a rather half-baked way. It’s only later that we realize we could cook up so much more with tools available under MS Word, MS Excel, and MS PowerPoint etc. This is a very basic tutorial on how to easily put together an interactive form with the help of Microsoft Word 2010. The feature of MS Word forms has been a constant feature from the early days. Most of us missed it because either we don’t need it or we found it too difficult to wrap our heads around it.]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/word.jpg" /><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/word.jpg?323f2c" alt="microsoft word forms"/>As every day users we usually treat <a href="http://www.makeuseof.com/tags/microsoft-office/">MS Office</a> in a rather half-baked way. It’s only later that we realize we could cook up so much more with tools available under MS Word, MS Excel, and MS PowerPoint etc. This is a very basic tutorial on how to easily put together an interactive form with the help of Microsoft Word 2010. The feature of MS Word forms has been a constant feature from the early days. Most of us missed it because either we don’t need it or we found it too difficult to wrap our heads around it.</p>
<p>Creating fillable forms are an advanced aspect of <a href="http://www.makeuseof.com/tags/microsoft-word/">MS Word</a>, but it’s a skill you would do well to master; especially if you routinely gather data or feedback from a target audience. So, here’s the not too difficult approach as demonstrated on MS Word 2010.</p>
<h2>It all starts with a plan</h2>
<p>Any design project starts with a thought and then takes the shape of a definite plan. Best thing you can do is to design it first on paper. To illustrate how to create a fillable form in Word 2010, here’s a basic feedback form for MakeUseOf.com readers.</p>
<h2>The Developer Tab is the control center for forms</h2>
<p>The <em>Developer</em> tab is hidden in the Ribbon. Reveal it by going to <em>File &#8211; Options ­- Customize Ribbon</em>. Under the long list of main tabs, select the checkbox for <em>Developer</em>.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/word-forms01.png?323f2c" alt="microsoft word forms" width="580" height="378" /></p>
<p>The Developer tab gets a place on the Ribbon.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/word-forms02.png?323f2c" alt="creating forms in microsoft word" width="580" height="94" /></p>
<h2>Adding Content Controls</h2>
<p>Content controls are interactive elements that help you design documents and templates quickly. Available since Word 2007, there home is on the Developer tab. Every content control has properties which can be set for user input and data collection. We start adding a few as building blocks for our form.</p>
<p>Type in the details that you want the recipients to fill out – like <em>Name, Gender, Age, Country, Operating System</em>…and a few more.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/word-forms03.png?323f2c" alt="creating forms in microsoft word" width="580" height="403" /></p>
<p>Now, the form will be embellished with a few content controls against the details we have filled out. Go to the <em>Developer</em> tab – insert the cursor where you want the control to appear. Under the <em>Controls</em> group, you can see that there are nine options to choose from depending on the user input you want. For instance, Name needs a <em>Plain Text Control</em> as a fillable data field. Gender could do with checkboxes for male and female. Similarly, you can insert the appropriate content controls at the right places.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/word-forms04.png?323f2c" alt="creating forms in microsoft word" width="580" height="279" /></p>
<p>To configure the properties of the form control, click on <em>Properties</em> in the Controls group. The Control Content Properties dialog box will appear when called for each type of form control. Select or enter the desired properties.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/word-forms05.png?323f2c" alt="creating forms in word" width="435" height="538" /></p>
<p>For instance, for the Text Form field for comments, you can restrict the length or keep it limited with the options in <em>Properties</em>.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/word-forms06.png?323f2c" alt="creating forms in word" width="411" height="359" /></p>
<p>For dropdowns, you can add individual items easily from its Properties dialog.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/word-forms07.png?323f2c" alt="creating forms in word" width="580" height="223" /></p>
<h2>Finalizing the form by restricting unintentional editing</h2>
<p>Another basic feature you can enforce for form input is to control formatting and editing of form content.</p>
<p>Click on the form control and then select <em>Restrict Editing</em> from the <em>Protect</em> group. Options open up in a sidebar. Under Editing Restrictions select &#8211; <em>Allow only this type of editing in the document. S</em>elect <em>Filling in forms</em>. Now, click on &#8211; Yes<em>, start enforcing protection</em>.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/word-forms08.png?323f2c" alt="" width="206" height="332" /><br />
This step limits user input to the form controls only and not to the surrounding text.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/word-forms09.png?323f2c" alt="microsoft word forms" width="224" height="187" /></p>
<p>A pop-up box opens up for setting up password protection. If you do not want to password protect the document click on OK to exit the dialog. Try out the form by filling in some sample data. To get back into the design mode, stop the protection by clicking on the button and then click on Design Mode in the Control Group.</p>
<p>This is a form at its simplest. Formatting and designing with Word’s other tools can turn even this simple form into a powerful document for data exchange. Let us know if this tutorial has served to illustrate the primary steps to create a fillable Microsoft Word 2010 form.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/fillable-form-word-2010-collect-data-easy/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>How To Create Attractive Professional Looking Charts Using The Chart Tools Of MS Word 2010</title>
		<link>http://www.makeuseof.com/tag/create-attractive-professional-charts-chart-tools-ms-word-2010/</link>
		<comments>http://www.makeuseof.com/tag/create-attractive-professional-charts-chart-tools-ms-word-2010/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 15:31:03 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[microsoft office]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[office worker]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=80232</guid>
		<description><![CDATA[Charts, as an illustrated way of showing boring facts and figures, has always helped to embellish professional Word documents. Charts help readers compare data and understand trends with a glance. But how do you create that impact with a well-designed chart? Let MS Word 2010 and its  Chart tools show you the way.]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/word.jpg" /><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/05/word.jpg?323f2c" alt="create professional chart"/>Creating professional documents is as much about the content as it is about the look. The right graphics at the right place are the icing on the cake. We have seen how MS Word helps us <a href="http://www.makeuseof.com/pages/?pagename=download&amp;wpdm_page=27&amp;mode=popup">create professional documents</a>. We have also taken a gander at some of the new attractive features that MS Word 2010 is parading about town, like <a href="http://www.makeuseof.com/tag/screenshot-apply-artistic-effects-ms-word-2010/">applying artistic effects</a>.</p>
<p>Charts, as an illustrated way of showing boring facts and figures, has always helped to embellish professional Word documents. Charts help readers compare data and understand trends with a glance. Charts are especially useful as supporting arguments to the underlying text that can easily be ignored. Charts are more in-your-face.</p>
<p>But how do you create that impact with a well-designed chart? Let MS Word 2010 and its  Chart tools show you the way.</p>
<h2>Overview</h2>
<p>The automated chart feature uses data stored in a MS Excel 2010 file to plot a chart in a MS Word 2010 document. Then you can modify the style, color, and layout of the chart as you please in MS Word. You need MS Excel 2010 to be installed in your system as both the Office programs will be working together. (If you don’t have MS Excel 2010 installed, Microsoft Graph will be called up.)The good news is that you don’t need to know how to work on MS Excel.</p>
<h2>Inserting a Chart in a Document</h2>
<p>1. Click on the <em>Insert</em> tab on the Ribbon. The <em>Chart</em> feature lies on the <em>Illustration</em> group.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/chart01.jpg?323f2c" alt="create professional chart" width="580" height="276" /></p>
<p>2. Clicking on the button opens up the Insert Chart dialog box where you can see the different types of charts you can choose from. The screen tips give you the chart names. The choice of the chart type will of course depend on how you want to portray your data. Some charts lend themselves well to specific kinds of data. Check out the <a href="http://office.microsoft.com/en-us/word-help/available-chart-types-HA010342187.aspx?CTT=5&amp;origin=HA010379388">available chart types</a> on MS Word.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/chart02.jpg?323f2c" alt="professional charts" width="562" height="387" /></p>
<p>3. When you pick a chart type and press on <em>OK</em>, two things happen – Microsoft Excel 2010 opens up with some sample data and a sample chart is inserted in your Word document.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/chart03.jpg?323f2c" alt="professional charts" width="580" height="355" /></p>
<p>4. Entering your own data in place of the sample data in the Excel worksheet modifies the chart as the Excel worksheet is linked to the chart in the Word document. When you have entered all your data, you can close Excel. If you want to edit some more, click on the <em>Edit Data</em> button on the Chart Tools (or right click on the chart and select <em>Edit Data</em>).</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/chart04.jpg?323f2c" alt="professional charts" width="580" height="406" /></p>
<h2>Stylizing Your Chart with Chart Tools</h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/chart05.jpg?323f2c" alt="professional chart maker" width="580" height="126" /></p>
<p><em>Chart Tools</em> gives you three extra tabs to change the appearance of your basic chart. You can free your creativity with the <em>Design, Layout</em>, and <em>Format</em> tabs. If you don&#8217;t see the Chart Tools, click anywhere on the chart to make it appear.</p>
<p>The design options before you are too many to mention here. Here are a few that allow me to make a humdrum chart look rich.</p>
<p>Change the Chart Type if you feel that the original isn’t cutting it. Clicking anywhere on the chart area you can bring you can bring up the dialog that lets you apply effects to the chart area as a whole.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/chart06.jpg?323f2c" alt="professional chart maker" width="580" height="358" /></p>
<p><em>Chart Layout</em> lets you change the orientation of the data and the <em>Layout</em> tab under Chart Tools gives you lot more to customize with.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/chart07.jpg?323f2c" alt="professional chart maker" width="580" height="361" /></p>
<p>The <em>Format</em> tools similar allow you to select each individual element from the dropdown and customize it with styles, color, and position.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/07/chart08.jpg?323f2c" alt="create professional chart" width="580" height="370" /></p>
<p>The sheer number of design variations enables you to create rich aesthetically designed charts. The automated features also allow for quick design changes and customization whenever you wish. The underlying data stays the same and it’s only the representation that changes according to the style applied. As a final step, place and align the chart at the right place in your document.</p>
<p>Explore all the automated features of the chart tool in MS Word 2010 and let us know your take on it. Do you think it’s a great enabler for your <a href="http://www.makeuseof.com/tags/microsoft-word/">MS Word</a> and MS Office tasks?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/create-attractive-professional-charts-chart-tools-ms-word-2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (Requested URI is rejected)
Database Caching 1/47 queries in 0.059 seconds using apc
Object Caching 686/797 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-10 22:05:12 -->
