<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>microsoft office tips</title>
	<atom:link href="http://xtremetips.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://xtremetips.com</link>
	<description>Tips and tricks for Microsoft Office and other cool stuff</description>
	<lastBuildDate>Wed, 22 Feb 2012 20:30:17 +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>Create a Doodle program – Part 1</title>
		<link>http://xtremetips.com/create-a-doodle-program-part-1/</link>
		<comments>http://xtremetips.com/create-a-doodle-program-part-1/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 20:30:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[2005]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[brushes]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[doodle]]></category>
		<category><![CDATA[drawgraphics]]></category>
		<category><![CDATA[drawing program]]></category>
		<category><![CDATA[express edition]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free visual basic]]></category>
		<category><![CDATA[helen bradley]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[pens]]></category>
		<category><![CDATA[picture control]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[system.drawing]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[visual basic 2010]]></category>

		<guid isPermaLink="false">http://xtremetips.com/?p=170</guid>
		<description><![CDATA[&#160; Follow these instructions to create a doodling program in Visual Basic Express 2010. This is a VB 2010 Express Edition program that lets you to doodle onto the screen. The program starts with a small window that you can draw on by dragging with the mouse. A line is drawn between the point you [...]]]></description>
			<content:encoded><![CDATA[<div>
<h1><a href="http://xtremetips.com/wp-content/uploads/2012/02/vb_doodle_drawing_program_starter.jpg"><img class="aligncenter  wp-image-173" title="vb_doodle_drawing_program_starter" src="http://xtremetips.com/wp-content/uploads/2012/02/vb_doodle_drawing_program_starter.jpg" alt="building a doodle program" width="312" height="366" /></a></h1>
<p>&nbsp;</p>
<p><em>Follow these instructions to create a doodling program in Visual Basic Express 2010.</em></p>
</div>
<p>This is a VB 2010 Express Edition program that lets you to doodle onto the screen. The program starts with a small window that you can draw on by dragging with the mouse. A line is drawn between the point you click on the drawing area and the point where you lift your mouse cursor from the drawing area. If you don&#8217;t like what you&#8217;ve drawn, click the Clear button and start over.</p>
<p>To create this application, start a new Visual Basic 2010 application – you can download the program from here (<a title="visual basic 2010 express download" href="http://bit.ly/vbexpressdownload" target="_blank">http://bit.ly/vbexpressdownload</a>) &#8211; and choose Windows Forms Application, type the name Doodler and click Ok. Enlarge the form on the screen to around half again its existing size.</p>
<p>Drag two buttons long the bottom edge of the form. Click one button and Shift + click on the second one and choose Format &gt; Make Same Size &gt; Both and then Format &gt; Align &gt; Tops to align the buttons and size them. Click the PictureBox control and drag a large PictureBox inside the form. The PictureBox should be almost the full width of the form and it should sit just above the buttons.</p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/vb_doodle_drawing_program_form.jpg"><img class="aligncenter  wp-image-172" title="vb_doodle_drawing_program_form" src="http://xtremetips.com/wp-content/uploads/2012/02/vb_doodle_drawing_program_form.jpg" alt="picture box placement" width="333" height="417" /></a></p>
<p>Right click the PictureBox, select Properties and set the BackColor to a light or white color. Double click the form to open the code window for the form. Type this code in the General &gt; Declarations section.</p>
<pre>Dim xStart, yStart, xEnd, yEnd As Integer
Dim DrawBitmap As Bitmap
Dim DrawGraphics As Graphics
Dim myPen As New Pen(Color.BlueViolet, 3)</pre>
<p>Add this code to the Form_Load event. It creates a new drawing in the PictureBox control which is where the line drawing will take place:</p>
<pre>drawbitmap = New Bitmap(PictureBox1.Width, PictureBox1.Height)
drawgraphics = Graphics.FromImage(drawbitmap)
PictureBox1.Image = DrawBitmap</pre>
<p>The code that does the actual drawing is this MyLine subroutine which you can type now. You can call this code anytime you need to draw a line. This program records the starting point when you click the mouse button and the ending point when you let it go. This routine draws the actual line between the two points. Regardless of whether the mouse is moved in a curve or a straight line – the routine always draws a straight line.</p>
<pre>Private Sub drawMyLine()
PictureBox1.Image = DrawBitmap
DrawGraphics.SmoothingMode = Drawing2D.SmoothingMode.HighQuality
DrawGraphics.DrawLine(myPen, xStart, yStart, xEnd, yEnd)
End Sub</pre>
<p>The color and size of the line are set up using the Pen object in the General Declarations area. Here you can change the line color and width by replacing the statement with something like this:</p>
<pre>Dim myPen As New Pen(Color.Red, 5)</pre>
<p>Add this code to the PictureBox1_MouseDown event.</p>
<p>&nbsp;</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/vb_doodle_drawing_program_event.jpg"><img class="aligncenter size-full wp-image-171" title="vb_doodle_drawing_program_event" src="http://xtremetips.com/wp-content/uploads/2012/02/vb_doodle_drawing_program_event.jpg" alt="putting in code" width="444" height="337" /></a></p>
<p>&nbsp;</p>
<p>When added to the MouseDown event this code calculates the value of the mouse pointer&#8217;s X and Y coordinates. It uses the Control.MousePosition property to return the absolute screen position for the mouse pointer. From this, the code subtracts the distance in from the left or the top of the screen of the form, the distance between the PictureBox and the form and the number of pixels of space consumed by the edge of the form and the title bar (4 and 31 pixels respectively).</p>
<pre>xStart = Control.MousePosition.X - (Me.Left + PictureBox1.Left + 4)
yStart = Control.MousePosition.Y - (Me.Top + PictureBox1.Top + 31)
' to do continuous drawing, enable this line
' drawMyLine()</pre>
<p>Type this next code into the PictureBox_MouseUp event handler. As with the MouseDown event this code retrieves the end X and Y coordinates for the end position of the mouse when you have dragged it and you let it go. These coordinates are calculated relative to the PictureBox. This event handler also takes care of drawing the line as it includes a call to the drawMyLine subroutine.</p>
<pre>xEnd = Control.MousePosition.X - (Me.Left + PictureBox1.Left + 4)
yEnd = Control.MousePosition.Y - (Me.Top + PictureBox1.Top + 31)
drawMyLine()</pre>
<p>The remaining code for the form is for the buttons. In the Button2_Click event type this:</p>
<pre>End</pre>
<pre></pre>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/vb_doodle_drawing_program_code.jpg"><img class="aligncenter  wp-image-174" title="vb_doodle_drawing_program_code" src="http://xtremetips.com/wp-content/uploads/2012/02/vb_doodle_drawing_program_code.jpg" alt="code" width="381" height="403" /></a></p>
<p>In the Button1_Click event type this code which resets the PictureBox so you can create a new image. This is a repeat of the code from the Form1_Load event:</p>
<pre>DrawBitmap = New Bitmap(PictureBox1.Width, PictureBox1.Height)
DrawGraphics = Graphics.FromImage(DrawBitmap)
PictureBox1.Image = DrawBitmap</pre>
<p>Once you have created the code, name the buttons Clear and Exit, name the form Doodler and test the application to check that it works. Test the Exit button to make sure that it exits the application. To draw, hold your mouse over the white picture area on the screen and click and drag to draw a line. Every time you click and drag, a new line will be added to the image. To clear the image and start again click the Clear button.</p>
<p>In the next installment I&#8217;ll add some extra functionality to the project including a save feature, I&#8217;ll improve the continuous drawing and add a tool for selecting a color and line width.</p>
]]></content:encoded>
			<wfw:commentRss>http://xtremetips.com/create-a-doodle-program-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel:  Print Right</title>
		<link>http://xtremetips.com/excel-print-right/</link>
		<comments>http://xtremetips.com/excel-print-right/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 18:02:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[Excell]]></category>
		<category><![CDATA[helen bradley]]></category>
		<category><![CDATA[hit the big red switch]]></category>
		<category><![CDATA[inconvenient page breaks]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[missing column headings]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[print a chart]]></category>
		<category><![CDATA[print multiple sheets on a page]]></category>
		<category><![CDATA[print preview]]></category>
		<category><![CDATA[selecting what to print]]></category>
		<category><![CDATA[shrink to fit]]></category>
		<category><![CDATA[spreadsheet]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[understand what prints]]></category>
		<category><![CDATA[use print preview]]></category>

		<guid isPermaLink="false">http://xtremetips.com/?p=154</guid>
		<description><![CDATA[&#160; If you’re like me, you have a litany of Excel printing horror stories to tell. It seems that when things go wrong when printing an Excel worksheet they never go wrong by halves – it is usually a spectacular disaster. Hit the big red switch Well your printer probably doesn&#8217;t have a big red [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>If you’re like me, you have a litany of Excel printing horror stories to tell. It seems that when things go wrong when printing an Excel worksheet they never go wrong by halves – it is usually a spectacular disaster.</p>
<h3>Hit the big red switch</h3>
<p>Well your printer probably doesn&#8217;t have a big red switch but it will have an OFF button. When the printer starts coughing up pages of unwanted garbage &#8211; hit the off switch, cancel the print job and then start hunting for the problem.</p>
<p>To help you, I&#8217;ve put together my best tips and troubleshooting techniques for printing right in Excel – every time.</p>
<h3>Understand what prints</h3>
<p>When you click the Print button to print an Excel worksheet, Excel prints everything that’s on that worksheet. Sometimes there are cells filled that you may not realize are filled and the result is you will print pages you don&#8217;t mean to print.</p>
<h3>Use Print Preview</h3>
<p>Your first and best tool is the Print Preview option in Excel – it shows you how many pages will print and if you&#8217;re expecting one page and it&#8217;s preparing for 50 you know something is very wrong. In Excel 2010 things are easier than ever before and the print preview appears whenever you choose File &gt; Print.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_1.jpg"><img class="aligncenter  wp-image-159" title="Excel_troubleshoot_printing_problems_1" src="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_1.jpg" alt="print preview" width="455" height="327" /></a></p>
<h3>Selecting what to print</h3>
<p>One common problem in Excel is having a filled cell well out of view. You might have mistakenly moved to a faraway cell and typed something &#8211; even something as innocuous as a space is all it takes and that worksheet cell contains data. So, when you click the Print button, Excel will print everything up to and including the cell containing that space. To you it looks like reams of empty paper &#8211; to Excel it all makes perfect sense.</p>
<p>When this happens to you there are two choices – find and delete the problem cell or use a workaround. The workaround involves selecting the area to print before printing it. To do this, select the area to print and choose File &gt; Print – don&#8217;t click the Print icon if you have one. In Excel 2007 choose Office button &gt; Print &gt; Print Preview. When the Print dialog appears, click the Selection option and only the selected area will print.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_2.jpg"><img class="aligncenter  wp-image-160" title="Excel_troubleshoot_printing_problems_2" src="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_2.jpg" alt="choosing what to print" width="363" height="372" /></a></p>
<h3>Inconvenient page breaks</h3>
<p>Sometimes, when Excel divides up a large worksheet over a series of pages it doesn’t put the page break in the most sensible place. You can preview page breaks before you print and make adjustments to them by selecting the View &gt; Page Break Preview (View tab &gt; Page Break Preview in Excel 2007 and 2010). When you do this, you’ll see dashed lines on the screen showing the page breaks.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_3.jpg"><img class="aligncenter  wp-image-161" title="Excel_troubleshoot_printing_problems_3" src="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_3.jpg" alt="preview where page breaks will occur" width="428" height="534" /></a></p>
<p>To change a page break you can add your own but this must be done inside a current page so that you’re effectively making the page smaller. You can’t make a page longer or wider using this technique.</p>
<p>To add a manual page break, click and select the column or row which should trigger the page break and choose Insert &gt; Page Break (in Excel 2007 and  2010, choose Page Layout tab &gt; Page Breaks &gt; Insert Page Break). You can also drag on the dashed lines to move them around the screen and reorganize your page layout.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_4.jpg"><img class="aligncenter size-full wp-image-162" title="Excel_troubleshoot_printing_problems_4" src="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_4.jpg" alt="changing page breaks" width="548" height="381" /></a></p>
<h3>Missing column headings</h3>
<p>When a worksheet prints over multiple pages – all pages from page 2 onwards will be missing row or column headings or both. The data on the pages will be hard to understand unless you tape the pages together.</p>
<p>A better solution is to print column and row headings on every page and, to do this, choose Page Layout &gt; Print Titles to open the Page Setup dialog at the Sheet tab. Click in the Rows To Repeat At Top box and type the row letters in the format $1:$1 to print the first row or $1:$2 to print the first two rows on each page. In the Columns To Repeat At Left box, type $A:$A to print the first column as row headings or $A:$B to print the first two columns.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_5.jpg"><img class="aligncenter  wp-image-163" title="Excel_troubleshoot_printing_problems_5" src="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_5.jpg" alt="printing column titles" width="478" height="397" /></a></p>
<h3>Shrink to fit</h3>
<p>When a worksheet is only a little too big to print on a single sheet of paper, you can shrink it to fit. Choose File &gt; Print and choose an option from the Scaling list which probably currently shows as No Scaling.</p>
<p>Choose Fit Sheet on One Page to scale the sheet down so it all prints on one sheet of paper. Other options include Fit all Columns on One Page and Fit All Rows on One Page which scale the worksheet to fit either one page wide or one page lengthwise. Choose Custom Scaling Options if none of these settings is exactly what you need.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_6.jpg"><img class="aligncenter size-full wp-image-155" title="Excel_troubleshoot_printing_problems_6" src="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_6.jpg" alt="shrink to fit" width="370" height="284" /></a></p>
<h3>Print multiple sheets on a page</h3>
<p>If you&#8217;ve tried to print part of one sheet and part of another on a single sheet of paper you know this is a futile exercise – Excel can&#8217;t do it because every sheet prints on new page even if it contains only a few cells of data.</p>
<p>There is a workaround that involves using the Camera tool to take a snapshot of the worksheet areas you want to print and place these on a single worksheet for printing.</p>
<p>To add the Camera tool to the QAT (Quick Access Toolbar), choose Options &gt; Quick Access Toolbar and from the dropdown list choose Commands Not in the Ribbon, locate the Camera and click Add to add it to the QAT.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_7.jpg"><img class="aligncenter  wp-image-156" title="Excel_troubleshoot_printing_problems_7" src="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_7.jpg" alt="camera tool" width="439" height="317" /></a></p>
<p>Now select the first area to print, and take a picture of it by clicking the Camera icon. Move to a new worksheet and click where the snapshot image should appear. Immediately you click on the spreadsheet a snapshot of what you captured will be inserted.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_8.jpg"><img class="aligncenter  wp-image-157" title="Excel_troubleshoot_printing_problems_8" src="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_8.jpg" alt="selecting camera area" width="455" height="345" /></a></p>
<p>Now go back and take a snapshot of the other worksheet and add it to your new sheet. You can do this as many times as you need to. Then print the worksheet and all the &#8216;snapshots&#8217; will print on the one page. Snapshots are live views so if the data in the original sheet changes then the snapshot will change too.</p>
<h3>Print a chart</h3>
<p>To print just a chart and not all the worksheet detail around it, click the chart to select it. Now choose File &gt; Print to locate all the options you have for sizing and printing your chart. When you click the Print button, only the chart will print.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_9.jpg"><img class="aligncenter  wp-image-158" title="Excel_troubleshoot_printing_problems_9" src="http://xtremetips.com/wp-content/uploads/2012/02/Excel_troubleshoot_printing_problems_9.jpg" alt="print the chart" width="455" height="386" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremetips.com/excel-print-right/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Cool Excel Chart Tips</title>
		<link>http://xtremetips.com/5-cool-excel-chart-tips/</link>
		<comments>http://xtremetips.com/5-cool-excel-chart-tips/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 17:29:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[add new data to a chart]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[control missing data]]></category>
		<category><![CDATA[Excell]]></category>
		<category><![CDATA[helen bradley]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[multiple axes]]></category>
		<category><![CDATA[pictures in charts]]></category>
		<category><![CDATA[re-size chart bars]]></category>
		<category><![CDATA[spreadsheet]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://xtremetips.com/?p=140</guid>
		<description><![CDATA[See how to tame unruly data by: - using multiple axes in Excel - adding pictures to charts - resize chart bars - add data to charts -deal with missing data Creating a basic chart in Excel is simple but when your data requires just a little bit extra attention to look its best, you&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<h3 style="text-align: center;">See how to tame unruly data by:</h3>
<p style="text-align: center;">- using multiple axes in Excel</p>
<p style="text-align: center;">- adding pictures to charts</p>
<p style="text-align: center;">- resize chart bars</p>
<p style="text-align: center;">- add data to charts</p>
<p style="text-align: center;">-deal with missing data</p>
<p>Creating a basic chart in Excel is simple but when your data requires just a little bit extra attention to look its best, you&#8217;ll need to delve into the depths of the Excel charting tools. Here I’ll show you five ways of taming unruly data in Microsoft Excel.</p>
<h3>Using Multiple Axes</h3>
<p>When you have a mix of data to use such as very large values and some very small ones like percentages you’ll find that the percentages disappear when they are plotted against the larger data values.</p>
<p>You can solve the problem by adding a second axis for the smaller values. To do this, click on the chart and then choose Chart Tools &gt; Layout tab and from the selector in the top left of the Ribbon select the chart series that you cannot see clearly on the chart. Then click the Format Selection icon which is directly below this.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_1.jpg"><img class="aligncenter  wp-image-144" title="hot_excel_chart_tips_and_techniques_1" src="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_1.jpg" alt="multiple axes" width="285" height="282" /></a></p>
<p>When the dialog appears click Series Options and click Secondary Axis to plot this series on a new axis which has a different scale applied to it.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_2.jpg"><img class="aligncenter  wp-image-145" title="hot_excel_chart_tips_and_techniques_2" src="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_2.jpg" alt="series options " width="346" height="257" /></a></p>
<p>Now, with the series still selected, select Chart Tools &gt; Design tab and choose Change Chart Type. Because you have only part of the chart selected whatever option you choose now will be applied to only the selected data series. Choose a contrasting chart type for this series to draw attention to the fact that it is plotted against a different axis. A good combination where you are using a column chart for the large values is to use a Line Chart for the very small values.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_3.jpg"><img class="aligncenter  wp-image-146" title="hot_excel_chart_tips_and_techniques_3" src="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_3.jpg" alt="chart apperance" width="342" height="232" /></a></p>
<p>To finish, from the Chart Tools &gt; Layout tab select Axes and name your primary and secondary vertical axes to indicate what is being displayed on those axes. Formatting the axis titles so they match the colour of the series plotted on them will help the reader understand your chart.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_4.jpg"><img class="aligncenter  wp-image-147" title="hot_excel_chart_tips_and_techniques_4" src="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_4.jpg" alt="titling axes" width="325" height="283" /></a></p>
<h3>Pictures in Charts</h3>
<p>Make your charts illustrate what their contents are all about by adding a picture to the chart. To do this click the chart to select it and, from the Chart Tools &gt; Format tab click the dropdown list in the top left corner and choose Plot Area to place the image behind the chart or choose Chart Area to fill the entire chart box with the image.</p>
<p>Choose either Format Selection which is immediately under the dropdown list. Select Fill and then click Picture or Texture Fill. Select File to open an image on your disk or choose Clip Art to use a clipart image. When you insert the image it will appear behind the chart. To make the picture partially transparent, adjust the transparency slider. If you place your image on the Chart Area you may want to select and set the Plot Area Fill to No Fill or make it partially transparent so you can see the image more clearly.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_5.jpg"><img class="aligncenter  wp-image-148" title="hot_excel_chart_tips_and_techniques_5" src="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_5.jpg" alt="pictures in charts" width="374" height="286" /></a></p>
<h3>Re-size<strong> Chart Bars</strong></h3>
<p>By default, Bar and Column charts are created with the bars and columns a preset width. If you would prefer the gaps to be smaller and the bars wider, you can do so. First choose Chart Tools &gt; Layout tab and select one of your chart series from the list. Then choose the Format Selection option immediately under this and select Series Options from the Format Data Series dialog. Adjust the Gap Width slider to make the space between bars or columns wider or narrower – if you make the gap narrower, the bars become wider and vice versa.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_6.jpg"><img class="aligncenter  wp-image-141" title="hot_excel_chart_tips_and_techniques_6" src="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_6.jpg" alt="chart bar re-size" width="418" height="318" /></a></p>
<h3>Overlap data in charts</h3>
<p>If you have plotted multiple series on your chart, you can overlap the bars or columns by dragging the Series Overlap slider towards Overlapped. This overlaps the bars or columns so they will be wider still as well as being overlapped.</p>
<h3>Add New Data to a chart</h3>
<p>In Excel 2003 and earlier versions you could add data to a chart by selecting the data and dragging and dropping it onto the chart. This behaviour was discontinued in Excel 2007 and 2010 making it more difficult than previously to add data to a chart.</p>
<p>One method of adding data to a chart in Excel 2007 and 2010 is to select the new data including the column heading if you previously included column headings in your chart data selection and click the Copy button on the Home tab of the ribbon. Now click on a data series in the chart and press Ctrl + V to paste the data into the chart.</p>
<p>The other method of adding data is to click the chart to select it and choose Chart Tools &gt; Design tab &gt; Select Data. In this dialog you will see the data that is already plotted in your chart. The series names appear in the panel on the left and the category or horizontal axis data appears in the right hand panel.</p>
<p>To add data, click the Add button and click on the series name to add – this is the cell or cells which contain the heading that should appear in the legend for this series. Then click in the Series Value box and select the data to include in the chart (but don&#8217;t include the headings you just selected). When you do this the chart will automatically expand to show the data that you have just added to it so you can check the results. Click Ok twice to finish.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_7.jpg"><img class="aligncenter  wp-image-142" title="hot_excel_chart_tips_and_techniques_7" src="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_7.jpg" alt="adding data to a chart" width="418" height="354" /></a></p>
<h3>Control Missing Data</h3>
<p>When your data is incomplete such as where some of it is missing you may find your chart looks strange because of the way Excel plots missing data. You can change the way that missing data is handled by clicking on the chart to select it and choose Chart Tools &gt; Design tab &gt; Select Data and click the Hidden and Empty Cells button.</p>
<p>A dialog appears with three options for plotting the empty cells: Gaps, Zero and Connect data points with line. Select the option that is best for your data and click Ok twice. All the data that is missing from your charted range will be dealt according to the option you selected.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_8.jpg"><img class="aligncenter  wp-image-143" title="hot_excel_chart_tips_and_techniques_8" src="http://xtremetips.com/wp-content/uploads/2012/02/hot_excel_chart_tips_and_techniques_8.jpg" alt="missing data control" width="371" height="294" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremetips.com/5-cool-excel-chart-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 Cool &#8216;Must Know&#8217; Excel functions</title>
		<link>http://xtremetips.com/7-cool-must-know-excel-functions/</link>
		<comments>http://xtremetips.com/7-cool-must-know-excel-functions/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 16:49:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Excel]]></category>
		<category><![CDATA[calculating averages]]></category>
		<category><![CDATA[calculating workdays]]></category>
		<category><![CDATA[date function]]></category>
		<category><![CDATA[Excell]]></category>
		<category><![CDATA[finding roots]]></category>
		<category><![CDATA[helen bradley]]></category>
		<category><![CDATA[making choices]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[multiply and add]]></category>
		<category><![CDATA[referring to a cell]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://xtremetips.com/?p=126</guid>
		<description><![CDATA[At its heart, Excel 2010 is a great tool for making calculations and Excel functions are the key to getting the work done fast. Here I&#8217;ll show you some of the most effective functions that Excel has to help you make calculations using worksheet data. 1          Calculating workdays To calculate the number of days between [...]]]></description>
			<content:encoded><![CDATA[<p>At its heart, Excel 2010 is a great tool for making calculations and Excel functions are the key to getting the work done fast. Here I&#8217;ll show you some of the most effective functions that Excel has to help you make calculations using worksheet data.</p>
<h3>1          Calculating workdays</h3>
<p>To calculate the number of days between two dates and taking into account holidays use the =NETWORKDAYS function. Start by placing the dates for the holidays in a range of cells across a row or down a column. Select this range and name it holidays using Formulas &gt; Define Name.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/7_must_know_excel_functions_1.jpg"><img class="aligncenter  wp-image-130" title="7_must_know_excel_functions_1" src="http://xtremetips.com/wp-content/uploads/2012/02/7_must_know_excel_functions_1.jpg" alt="calculating number of workdays" width="359" height="325" /></a></p>
<p>This function will calculate the number of workdays between two dates placed in cell A1 and A2, taking into account the days you&#8217;ve described as being holidays:</p>
<p>=NETWORKDAYS(A1,A2,Holidays)</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/7_must_know_excel_functions_2.jpg"><img class="aligncenter  wp-image-131" title="7_must_know_excel_functions_2" src="http://xtremetips.com/wp-content/uploads/2012/02/7_must_know_excel_functions_2.jpg" alt="function =NETWORKDAYS(A1,A2,holidays)" width="379" height="158" /></a></p>
<p>If the NETWORKDAYS function returns an error make sure that you have the Analysis Toolpak installed by choosing File &gt; Options &gt; Add-ins &gt; Excel Add-ins &gt; Go.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/7_must_know_excel_functions_3.jpg"><img class="aligncenter  wp-image-132" title="7_must_know_excel_functions_3" src="http://xtremetips.com/wp-content/uploads/2012/02/7_must_know_excel_functions_3.jpg" alt="trouble shooting NETWORKDAYS function" width="409" height="254" /></a></p>
<p>Make sure the checkbox for the Add-in is selected:</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/7_must_know_excel_functions_41.jpg"><img class="aligncenter size-full wp-image-128" title="7_must_know_excel_functions_4" src="http://xtremetips.com/wp-content/uploads/2012/02/7_must_know_excel_functions_41.jpg" alt="select analysis toolpack" width="288" height="232" /></a></p>
<h3>2          Calculating Averages</h3>
<p>The AVERAGE function can be used to calculate the average of a series of numbers. The syntax is =AVERAGE(<em>StartCell</em>:<em>EndCell</em>), where StartCell is the first cell in the range and EndCell is the last cell.</p>
<p>Be aware that when you make an AVERAGE calculation, blank (empty cells) are ignored. So, for example, the average of four cells, three of which contain the number four and one of which is blank, is four.</p>
<p>If you place a zero in the empty cell then the Average is 3. If you intend blank cells to represent the value zero you should place a zero in all empty cells before making the calculation.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/7_must_know_excel_functions_5.jpg"><img class="aligncenter  wp-image-129" title="7_must_know_excel_functions_5" src="http://xtremetips.com/wp-content/uploads/2012/02/7_must_know_excel_functions_5.jpg" alt="blank cells vs zeros" width="398" height="300" /></a></p>
<h3>3          Date functions</h3>
<p>Two of Excel’s functions =NOW() and =TODAY() allow you to insert the current date and time or just the current date into a cell. If you do this and see a number of around 39,000 this is the number of days since the 1<sup>st</sup> of January 1900 and is how dates are calculated. Simply format this number as a date using the Format &gt; Cell &gt; Number Format options.</p>
<h3>4          Referring to a cell</h3>
<p>One difficulty which stumps even seasoned Excel users is how to refer to the contents of one cell in the current cell. For example, if cell A2 should contain the same contents as cell C2 simply type =C2 in cell A2. Linking cells like this ensures that when the value in C2 changes, the value in cell A2 will change to match it. You can achieve a similar result across worksheets by prefixing the cell reference with the worksheet name. For example, this formula refers to the contents of cell C2 on Sheet1: =Sheet1!C2.</p>
<h3>5          Multiply and Add</h3>
<p>Often when you are making calculations you need to multiply the contents of one column by the values in a second column and then add the results. You might do this, for example, if you have a list of product numbers in stock and you need to multiply these by the cost price and sum it to obtain an inventory value. To do this use the SUMPRODUCT function, the syntax of which is =SUMPRODUCT(<em>FirstRange,SecondRange</em>). For example, =SUMPRODUCT(A2:A25,B2:B25) will multiply each of the cells in the range in column A by the corresponding cell in the range in column B and then total the result.</p>
<h3>6          Making choices</h3>
<p>The IF function lets you make a choice in your worksheet. For example, if cell A2 contains a value of Y or N depending on whether a discount is applicable, you can use the value in that cell to calculate the discount in another cell. If the discount is 10% this formula will calculate the discount on a price in cell A3:</p>
<p>=IF(A2 =&#8221;Y&#8221;,0.1*A3, 0)</p>
<p>The formula checks cell A2 to see if a discount is to be allowed and, if so, the discount is calculated using the total price in cell A3. If not, the discount is set to 0.</p>
<h3>7          Finding Roots</h3>
<p>Excel has a special function SQRT for finding the square root of a number. So, for example, the square root of 25 can be calculated using =SQRT(25). There is, however, no corresponding function for calculating the cube or any other root of a number. You can, however, calculate this using a simple formula if you know that the square root of 25 can be written mathematically as =25^(1/2). By extension, the cube root can be calculated by typing =25^(1/3).</p>
]]></content:encoded>
			<wfw:commentRss>http://xtremetips.com/7-cool-must-know-excel-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hyperlinks in Word</title>
		<link>http://xtremetips.com/hyperlinks-in-word/</link>
		<comments>http://xtremetips.com/hyperlinks-in-word/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 23:15:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Word]]></category>
		<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[helen bradley]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[hyperlinks]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[images as hyperlinks]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[steps]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[styling hyperlinks]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[word]]></category>

		<guid isPermaLink="false">http://xtremetips.com/?p=108</guid>
		<description><![CDATA[Consider the situation where you are working on a Word document and you want to refer someone to an Excel worksheet. Instead of telling them where to find that worksheet it would be much more useful to give them a link to it that they could click to open it. You can do this using [...]]]></description>
			<content:encoded><![CDATA[<p>Consider the situation where you are working on a Word document and you want to refer someone to an Excel worksheet. Instead of telling them where to find that worksheet it would be much more useful to give them a link to it that they could click to open it. You can do this using the hyperlink feature in Word. Here I&#8217;ll show you some ways to use hyperlinks to link to websites, document templates and other files.</p>
<h3>Create a hyperlink</h3>
<p>To create a hyperlink in a Word document, type the text that you want to anchor the hyperlink to and then choose Insert &gt; Hyperlink. In Word 2007 and 2010 this is in the Links group on the Insert tab.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document1.jpg"><img class="aligncenter  wp-image-112" title="word_insert_hyperlinks_into_a_document1" src="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document1.jpg" alt="creating a hyperlink 1" width="462" height="320" /></a></p>
<p>The text to display should appear in the box, click the Screen Tip button and type a screen tip.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document2.jpg"><img class="aligncenter  wp-image-113" title="word_insert_hyperlinks_into_a_document2" src="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document2.jpg" alt="hyperlink in word 2" width="438" height="259" /></a></p>
<p>To link to an Excel file, select Existing File or Web page and browse to find the file to link to. Once you’ve selected the file to link to, click Target frame and indicate whether you want to open the document in a new window or not. Click Ok and then Ok again. It is also possible to link to an existing file such as a different Word document, or a web page, a place in this document, a new document, or an email address.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document3.jpg"><img class="aligncenter  wp-image-114" title="word_insert_hyperlinks_into_a_document3" src="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document3.jpg" alt="linking to an excel file" width="432" height="231" /></a></p>
<h3>Hyperlink options</h3>
<p>To test a link, Ctrl + Click on it. This behavior can be changed to a single click by changing your Word Options. Click the Office Button or choose File and then Options. In the Advanced area look for the Editing options and you can disable the option “Use Ctrl + Click to Follow Hyperlink” and only a single click will be required. This applies to version of Word only and won’t change any settings on the document recipient’s computer.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document4.jpg"><img class="aligncenter  wp-image-115" title="word_insert_hyperlinks_into_a_document4" src="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document4.jpg" alt="changing behavior of word functions" width="443" height="280" /></a></p>
<p>Also in the Options &gt; Proofing area you will find the AutoCorrect options which control how text is converted automatically to hyperlinks. If you enable Internet and Network Paths with Hyperlinks then things that look like URLs or email addresses will be automatically formatted as hyperlinks. If this is disabled, they won’t – but you can always do this manually if desired.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document5.jpg"><img class="aligncenter  wp-image-116" title="word_insert_hyperlinks_into_a_document5" src="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document5.jpg" alt="setting up auto correct" width="505" height="365" /></a></p>
<h3>Images as hyperlinks</h3>
<p>In Word you can not only use text as a hyperlink anchor but you can also use an image or a graphic. To do this, inset the image, then with it selected, choose Insert Hyperlink. You won’t have any text displayed in the dialog in this case because you are linking to an object so the Text to Display area will read &lt;&lt;selection in document&gt;&gt; instead. You could use this to link an image of a worksheet to the actual worksheet or a small image of a website to the actual site.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document6.jpg"><img class="aligncenter  wp-image-117" title="word_insert_hyperlinks_into_a_document6" src="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document6.jpg" alt="using image as hyperlinks" width="541" height="266" /></a></p>
<p>Hyperlinks are saved with a document and are also included as live links in PDF files when you save a document as a PDF file from Word.</p>
<h3>Create a hyperlink within a document</h3>
<p>To link to a place in the current document first create a bookmark where you want the link to take you to by using Insert &gt; Bookmark, type a name for the bookmark and click Add. Now go to where the link should be type and select the anchor text, right click and choose Hyperlink.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document7.jpg"><img class="aligncenter  wp-image-109" title="word_insert_hyperlinks_into_a_document7" src="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document7.jpg" alt="hyperlinks in documents" width="327" height="265" /></a></p>
<h3>Step 2</h3>
<p>Choose Place in This Document in the Link to: area. In the list of places locate the Bookmarks collection and select the bookmark to link to. This creates a link within the document so, when you Ctrl + click on the hyperlink, you’ll be taken to that bookmarked position.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document8.jpg"><img class="aligncenter  wp-image-110" title="word_insert_hyperlinks_into_a_document8" src="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document8.jpg" alt="step 2" width="445" height="234" /></a></p>
<h3>Step 3</h3>
<p>To change how hyperlinks look, from the Styles group on the Home tab, select the Style Task Pane flyout. Locate the Hyperlink entry and, from the down-pointing arrow to its right, click Modify. Change the style options and click Ok. You can also change the look of Followed Hyperlinks.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document9.jpg"><img class="aligncenter  wp-image-111" title="word_insert_hyperlinks_into_a_document9" src="http://xtremetips.com/wp-content/uploads/2012/02/word_insert_hyperlinks_into_a_document9.jpg" alt="styling hyperlinks" width="554" height="347" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremetips.com/hyperlinks-in-word/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ClipArt in Office 2007 and 2010</title>
		<link>http://xtremetips.com/clipart-in-office-2007-and-2010/</link>
		<comments>http://xtremetips.com/clipart-in-office-2007-and-2010/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 22:44:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Word]]></category>
		<category><![CDATA[add a signature]]></category>
		<category><![CDATA[clip organizer]]></category>
		<category><![CDATA[collection]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[download clip art]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free clip art]]></category>
		<category><![CDATA[free web clip art]]></category>
		<category><![CDATA[helen bradley]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[import image]]></category>
		<category><![CDATA[microsoft office]]></category>
		<category><![CDATA[office 2007]]></category>
		<category><![CDATA[office 2010]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://xtremetips.com/?p=94</guid>
		<description><![CDATA[How to use the Microsoft Clip Organizer and some handy things to add to it. Since the early days of Microsoft Office, there has always been a tool for finding and using clip art in your documents, worksheets and presentations. While the clip art that comes with the Microsoft Office suite may not be to [...]]]></description>
			<content:encoded><![CDATA[<p><em>How to use the Microsoft Clip Organizer and some handy things to add to it.</em></p>
<p>Since the early days of Microsoft Office, there has always been a tool for finding and using clip art in your documents, worksheets and presentations. While the clip art that comes with the Microsoft Office suite may not be to your taste, there are other ways that you can use the clip organizer to speed up your work. In this column, I&#8217;ll show you some techniques for working with your clip organizer in Office 2007 and 2010.</p>
<h3>Finding the Clip Organizer</h3>
<p>In Office 2010, the direct link from inside Office applications to the Clip Organizer has been removed. In previous versions when you choose Insert &gt; Clip Art you find an Organize Clips option at the foot of the task pane. This no longer appears in any Office 2010 application.</p>
<p>Instead, to access the Clip Organizer you&#8217;ll choose Start &gt; Programs &gt; Microsoft Office &gt; Microsoft Office 2010 Tools and then click the Microsoft Clip Organizer option. This opens the Microsoft Clip Organizer. Here you will find clips that you have downloaded as well as links to Office and web clip art collections.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/Word_2010_find_the_clip_art_organizer.jpg"><img class="aligncenter size-full wp-image-102" title="Word_2010_find_the_clip_art_organizer" src="http://xtremetips.com/wp-content/uploads/2012/02/Word_2010_find_the_clip_art_organizer.jpg" alt="find clip art organizer" width="558" height="256" /></a><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_find_stored_clip_art_image.jpg"><br />
</a></p>
<h3>Find and download free Microsoft clip art</h3>
<p>You can add additional images to your clip art collection from the web. To do this visit <a href="http://office.microsoft.com/images">http://office.microsoft.com/images</a> and type a description of the image to search for in the search bar and click to find matching images.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/Find_free_clip_art_on_the_web.jpg"><img class="aligncenter size-full wp-image-98" title="Find_free_clip_art_on_the_web" src="http://xtremetips.com/wp-content/uploads/2012/02/Find_free_clip_art_on_the_web.jpg" alt="free web clip art" width="700" height="557" /></a></p>
<p>If you click Download, the image will download as an image file and will not be automatically added to your clip art collection. You must then add the image to your clip art organizer. To do this, from in the Clip Organizer, choose File &gt; Add Clips to Organizer &gt; On My Own and then brows to where the image is stored – typically your Downloads folder. Select the image and double click it. It will appear in the Organizer.</p>
<p>Click it and click the down pointing arrow and choose Preview/Properties. Here you can edit its keywords and move images to other collections if desired.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/Word_Preview_downloaded_clip_art.jpg"><img class="aligncenter size-full wp-image-97" title="Word_Preview_downloaded_clip_art" src="http://xtremetips.com/wp-content/uploads/2012/02/Word_Preview_downloaded_clip_art.jpg" alt="previewing clip art" width="565" height="567" /></a></p>
<h3>Add a signature or logo as Clip Art</h3>
<p>One handy way to use your clipart collection is to add images such as a scanned version of your signature or your company logo or any other image which you use often in your work. When you do this, you can easily add the image to a document using the Insert &gt; Clip Art option and you don&#8217;t have to search for it on disk.</p>
<p>To add the scanned image to the Clip Organizer, choose File &gt; Add Clips to Organizer &gt; On My Own. Browse to find the clip to add to the organizer. Select it and click Add To to select a collection to add the clipart to or create a new one.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_import_an_image_into_a_collection1.jpg"><img class="aligncenter size-full wp-image-100" title="word_import_an_image_into_a_collection" src="http://xtremetips.com/wp-content/uploads/2012/02/word_import_an_image_into_a_collection1.jpg" alt="import an image into a collection" width="631" height="632" /></a></p>
<p>Click Add to add the image to the selected collection. Click on the collection and click the dropdown list opposite the clip and choose Edit Keywords. Add keywords to help identify the image and remove any which are not relevant.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/Word_add_keywords_to_a_clipart_image.jpg"><img class="aligncenter size-full wp-image-101" title="Word_add_keywords_to_a_clipart_image" src="http://xtremetips.com/wp-content/uploads/2012/02/Word_add_keywords_to_a_clipart_image.jpg" alt="adding keywords" width="568" height="401" /></a></p>
<h3>Add a clip art image to a Word document</h3>
<p>Once the image is in your clipart collection, in any Office application choose Insert &gt; Clip Art, type a keyword to search for and click Go. When the image is returned as a match click it to insert it into your document.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_find_stored_clip_art_image.jpg"><img class="aligncenter size-full wp-image-95" title="word_find_stored_clip_art_image" src="http://xtremetips.com/wp-content/uploads/2012/02/word_find_stored_clip_art_image.jpg" alt="find a stored image" width="600" height="429" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremetips.com/clipart-in-office-2007-and-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customizing the Office 2010 Ribbon</title>
		<link>http://xtremetips.com/customizing-the-office-2010-ribbon/</link>
		<comments>http://xtremetips.com/customizing-the-office-2010-ribbon/#comments</comments>
		<pubDate>Wed, 15 Feb 2012 22:24:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Word]]></category>
		<category><![CDATA[.exportUI file format. accessing commands]]></category>
		<category><![CDATA[customized ribbon]]></category>
		<category><![CDATA[customizing ribbon]]></category>
		<category><![CDATA[helen bradley]]></category>
		<category><![CDATA[how to. adding tags]]></category>
		<category><![CDATA[microsoft office 2010]]></category>
		<category><![CDATA[renaming groups]]></category>
		<category><![CDATA[renaming tabs]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[ribbon]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[share ribbon]]></category>
		<category><![CDATA[sharing]]></category>

		<guid isPermaLink="false">http://xtremetips.com/?p=83</guid>
		<description><![CDATA[There is a lot to love about Office 2010 and one of its new features is the ability to customize the Ribbon. This lets you make the Ribbon looks the way you want it to look rather than how Microsoft thinks it should look. Here, I&#8217;ll show you how to get started customizing the Ribbon [...]]]></description>
			<content:encoded><![CDATA[<p>There is a lot to love about Office 2010 and one of its new features is the ability to customize the Ribbon. This lets you make the Ribbon looks the way you want it to look rather than how Microsoft thinks it should look.</p>
<p>Here, I&#8217;ll show you how to get started customizing the Ribbon and show you what you can do in customizing it. I&#8217;ll use Word for the examples but you can do this in Excel, PowerPoint, or the other Office 2010 applications.</p>
<h3>Get started</h3>
<p>The customization options are accessible from the new Backstage view so choose File &gt; Options &gt; Customize Ribbon. Here are the tools for customizing the Ribbon. They include the option to rename any of the Microsoft built in Ribbon Tabs or Group and to add your own Tabs to the Ribbon.</p>
<p>You can also add new groups to any Tabs – yours or those which were built-in and rearrange items in existing Tabs if you don’t like how they’re arranged.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_2010_customize_the_ribbon_1.jpg"><img class="aligncenter size-full wp-image-87" title="word_2010_customize_the_ribbon_1" src="http://xtremetips.com/wp-content/uploads/2012/02/word_2010_customize_the_ribbon_1.jpg" alt="customizing ribbon tabs" width="607" height="412" /></a></p>
<h3>Add a new Tab</h3>
<p>To add a new Tab to the ribbon, click the New Tab button then right click the New Tab, choose Rename and type a name for it. Right click the New Group that has been created automatically for you, click Rename and type a name for this – you can only put items on a tab if they are located in a group. Select an icon to use for the group and click Ok.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_2010_customize_the_ribbon_2.jpg"><img class="aligncenter size-full wp-image-88" title="word_2010_customize_the_ribbon_2" src="http://xtremetips.com/wp-content/uploads/2012/02/word_2010_customize_the_ribbon_2.jpg" alt="adding tabs" width="662" height="419" /></a></p>
<p>To add commands to your new group, select a command in the panel on the right and, with your new group selected, click Add. Continue to add commands to your new group as desired. You can also add additional groups by selecting your new Tab, click New Group, rename it and then add commands to it too.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_2010_customize_the_ribbon_3.jpg"><img class="aligncenter size-full wp-image-89" title="word_2010_customize_the_ribbon_3" src="http://xtremetips.com/wp-content/uploads/2012/02/word_2010_customize_the_ribbon_3.jpg" alt="adding commands" width="560" height="425" /></a></p>
<h3>Share your customizations</h3>
<p>In addition you can import and export the customizations that you’ve made to the Ribbon. This lets you share your customizations with others – this will be useful at work if you have tools, macros or templates that you use all the time. You could add these to the Ribbon to have easier access to them and use the exported customization file to easily make everyone’s copy of Word, for example, look the same.</p>
<p>To export your customization to share with others or as a backup, click Import/Export &gt; Export All Customizations and export the customizations as an .exportedUI format file. This can be imported into another copy of this application on another computer.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_2010_customize_the_ribbon_4.jpg"><img class="aligncenter size-full wp-image-84" title="word_2010_customize_the_ribbon_4" src="http://xtremetips.com/wp-content/uploads/2012/02/word_2010_customize_the_ribbon_4.jpg" alt="sharing your customization " width="735" height="395" /></a></p>
<h3>Accessing Commands not in the Ribbon</h3>
<p>Another application for creating your own Tabs and groups is to get access to commands that are not currently in the Ribbon.</p>
<p>Click the dropdown list in the left hand panel in the Customize Ribbon dialog and select the &#8216;Commands not in the Ribbon&#8217; option. You will see there is also a Macros option here – both options give you access to tools not otherwise on the Ribbon.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_2010_customize_the_ribbon_5.jpg"><img class="aligncenter size-full wp-image-85" title="word_2010_customize_the_ribbon_5" src="http://xtremetips.com/wp-content/uploads/2012/02/word_2010_customize_the_ribbon_5.jpg" alt="accessing commands not in ribbon" width="495" height="383" /></a></p>
<h3>Renaming tabs and Groups</h3>
<p>To rename an existing Ribbon Tab, click on the Tab name in the right hand panel, select Rename and type a new name for it. You can also rename groups by clicking the group name and select Rename.</p>
<h3>Reordering the Ribbon</h3>
<p>To reorganize the Ribbon you can move Tabs and groups around. To do this, click the tab to move and click the Move Up or Move Down button to the right of the rightmost panel to change its position.</p>
<p>When you’re done customizing the Ribbon, click Ok to view your changes.</p>
<h3>Reset the Ribbon</h3>
<p>To reset the Ribbon – effectively undoing your changes – so it looks how it did when you installed the program, from the Customize Ribbon area of the Backstage view, select the Reset dropdown list.</p>
<p>Now select to reset just the selected Tab or to reset all customizations. You can also right click a Tab and choose Delete to remove it.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_2010_customize_the_ribbon_6.jpg"><img class="aligncenter size-full wp-image-86" title="word_2010_customize_the_ribbon_6" src="http://xtremetips.com/wp-content/uploads/2012/02/word_2010_customize_the_ribbon_6.jpg" alt="resetting ribbon settings" width="430" height="258" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremetips.com/customizing-the-office-2010-ribbon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Word form data to Excel</title>
		<link>http://xtremetips.com/word-form-data-to-excel/</link>
		<comments>http://xtremetips.com/word-form-data-to-excel/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 20:42:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Word]]></category>
		<category><![CDATA[create a form]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[developer tab]]></category>
		<category><![CDATA[drop down list]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[Excell]]></category>
		<category><![CDATA[form data]]></category>
		<category><![CDATA[helen bradley]]></category>
		<category><![CDATA[import to excel]]></category>
		<category><![CDATA[legacy controls]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[protect form]]></category>
		<category><![CDATA[save as template]]></category>
		<category><![CDATA[save form]]></category>
		<category><![CDATA[send word form data to excel]]></category>
		<category><![CDATA[word form data]]></category>

		<guid isPermaLink="false">http://xtremetips.com/?p=62</guid>
		<description><![CDATA[Learn how to create a form in Word and how to import its saved data into Excel. Creating a form in a Word document is one half of a data collection process. Once the form is completed, you will need to extract the data so you can do something with it. Here I will show [...]]]></description>
			<content:encoded><![CDATA[<p><em>Learn how to create a form in Word and how to import its saved data into Excel.</em></p>
<p>Creating a form in a Word document is one half of a data collection process. Once the form is completed, you will need to extract the data so you can do something with it. Here I will show you how to use the legacy form controls to create a form in Word and how to get the data into an Excel file.</p>
<h3>Get the Developer tab</h3>
<p>To get started, you&#8217;ll need to create a form in a new Word file. I&#8217;m using Word 2010 but the process is the same in any version of Word. In earlier versions the forms tools can be found by choosing View &gt; Toolbars &gt; Forms. In Word 2007/2010 the form tools are on the Developer tab – in Word 2007 choose Office Button &gt; Word Options &gt; Show Developer tab in the Ribbon.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/show_developer_tab_in_ribbon.jpg"><img class="aligncenter size-full wp-image-72" title="show_developer_tab_in_ribbon" src="http://xtremetips.com/wp-content/uploads/2012/02/show_developer_tab_in_ribbon.jpg" alt="show developer tap in ribbon" width="449" height="336" /></a></p>
<h3>Create a form</h3>
<p>My form includes fields for the name, email address, check boxes for the operating system, a combo box for the application they&#8217;re having problems with, and a small box for comments. This is the kind of form that could be used for a computer support desk for example, but your form can gather any kind of data.</p>
<p>The form is created using Content Controls from the Developer tab in Word 2007/2010. You need to use the Legacy Forms controls as the newer ones don&#8217;t work for this process. Each textbox is created using a Text Form Field and the combo box is created using a Drop-Down Form Field. The checkboxes are created using a Check Box Form Field.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_legacy_controls.jpg"><img class="aligncenter size-full wp-image-65" title="word_legacy_controls" src="http://xtremetips.com/wp-content/uploads/2012/02/word_legacy_controls.jpg" alt="word legacy controls" width="349" height="262" /></a></p>
<p>Add all the objects you need to the document and right click each control in turn to access the Properties for that control. For example, for the Drop-Down Form Field Options box you&#8217;ll need to add items for the list.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_drop_down_list_control.jpg"><img class="aligncenter size-full wp-image-70" title="word_drop_down_list_control" src="http://xtremetips.com/wp-content/uploads/2012/02/word_drop_down_list_control.jpg" alt="drop down list control panel" width="434" height="330" /></a></p>
<h3>Protect the form</h3>
<p>Once you&#8217;ve done this, protect the form by choosing Restrict Editing (Protect Document), enable the &#8216;Allow only this type of editing in the document&#8217; checkbox and choose Filling in Forms from the list. Click Yes, Start Enforcing Protection.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_restrict_editing.jpg"><img class="aligncenter size-full wp-image-66" title="word_restrict_editing" src="http://xtremetips.com/wp-content/uploads/2012/02/word_restrict_editing.jpg" alt="restrict editing" width="520" height="438" /></a></p>
<h3>Save the form template</h3>
<p>Save the file as a template by choosing File &gt; Save As. From the Save As Type dropdown list, select Word Template (*.dotx) and then give the template a name. From the Favorite Links at the top left of the dialog, select Templates, to locate your Word templates folder. Once you&#8217;ve saved the file you can close it.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_save_as_a_template.jpg"><img class="aligncenter size-full wp-image-67" title="word_save_as_a_template" src="http://xtremetips.com/wp-content/uploads/2012/02/word_save_as_a_template.jpg" alt="save as a template" width="640" height="461" /></a></p>
<h3>Use the new form</h3>
<p>To complete the form choose File &gt; New &gt; My Templates and then select and open the template.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_select_template_file.jpg"><img class="aligncenter size-full wp-image-69" title="word_select_template_file" src="http://xtremetips.com/wp-content/uploads/2012/02/word_select_template_file.jpg" alt="selectig the template file" width="579" height="360" /></a></p>
<p>Complete the form and then choose File (Office Button) &gt; Options &gt; Advanced and from the Save category of options, select &#8216;Save Form Data as Delimited Text File&#8217; and click Ok. When you save the file it will save as a plain text file containing the data only.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_save_form_data_as_delimited_file.jpg"><img class="aligncenter size-full wp-image-68" title="word_save_form_data_as_delimited_file" src="http://xtremetips.com/wp-content/uploads/2012/02/word_save_form_data_as_delimited_file.jpg" alt="save form data as a delimited file" width="521" height="349" /></a></p>
<h3>Import form data into Excel</h3>
<p>To import the data into Excel start by opening Excel and choose Data &gt; From Text and locate the text file containing the saved data. Select Delimited, click Next, select Comma and deselect Tab and anything else that is selected, click Next and then Finish. Select the cell for the data (A1) and click Ok.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_forms_data_to_excel_step1.jpg"><img class="aligncenter size-full wp-image-71" title="word_forms_data_to_excel_step1" src="http://xtremetips.com/wp-content/uploads/2012/02/word_forms_data_to_excel_step1.jpg" alt="step 1" width="579" height="411" /></a></p>
<p>To add data from another file you will repeat the previous step but, to do so you must leave a blank row between the data that you previously entered and this new row. If you are positioned in the row immediately below the data the Data &gt; From Text option will be greyed out.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_forms_data_to_excel_step2.jpg"><img class="aligncenter size-full wp-image-63" title="word_forms_data_to_excel_step2" src="http://xtremetips.com/wp-content/uploads/2012/02/word_forms_data_to_excel_step2.jpg" alt="step 2" width="580" height="464" /></a></p>
<p>Once you&#8217;ve finished importing all the data, you can delete the blank rows that you had to leave. Insert a new first row into the worksheet and add the column headings for your data. Save the file and you can now analyse the data or open it later on to add more data to it.</p>
<p><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_forms_data_to_excel_step3.jpg"><img class="aligncenter size-full wp-image-64" title="word_forms_data_to_excel_step3" src="http://xtremetips.com/wp-content/uploads/2012/02/word_forms_data_to_excel_step3.jpg" alt="step 3" width="550" height="242" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://xtremetips.com/word-form-data-to-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DIY Word 2007 &amp; 2010 Cover Pages</title>
		<link>http://xtremetips.com/diy-word-2007-2010-cover-pages/</link>
		<comments>http://xtremetips.com/diy-word-2007-2010-cover-pages/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 20:06:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Word]]></category>
		<category><![CDATA[cover pages]]></category>
		<category><![CDATA[custom cover pages]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[helen bradley]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[instructions]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[word 2007]]></category>
		<category><![CDATA[word 2010]]></category>

		<guid isPermaLink="false">http://xtremetips.com/?p=48</guid>
		<description><![CDATA[Helen Bradley introduces the skills you need to create your own cover pages for Word 2007 and 2010. In Word 2007 Microsoft introduced a number of dynamic elements such as Cover Pages, Headers and Footers. You can use the Cover Page tool, for example, to select from a preset list of attractively formatted document cover [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_cover_pages_opener.jpg"><img class=" wp-image-54 aligncenter" title="opener" src="http://xtremetips.com/wp-content/uploads/2012/02/word_cover_pages_opener.jpg" alt="DIY word cover pages" width="286" height="430" /></a></p>
<p><em>Helen Bradley</em><em> introduces the skills you need to create your own cover pages for Word 2007 and 2010.</em></p>
<p>In Word 2007 Microsoft introduced a number of dynamic elements such as Cover Pages, Headers and Footers. You can use the Cover Page tool, for example, to select from a preset list of attractively formatted document cover pages. Once you’ve entered the data in that cover page, if you change your mind and want to use a different cover page, you can easily do so. Not only is the previous one removed automatically but any content you have entered into that cover page will be automatically repurposed into the new one. This month we’ll show you how to create your own custom cover pages in Word 2007 and 2010 that behave like Word’s own built-in cover pages.</p>
<p>To create your own cover page in Microsoft Word 2007 or 2010 start by creating two new blank documents. Choose File &gt; New &gt; Blank Document and click Create. Select the first blank document and choose Insert &gt; Cover Page and select a cover page that has the text elements on it that you want to include on your cover page. You won’t be looking at any of the images – just the text elements.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_cover_pages_insert.jpg"><img class=" wp-image-53 aligncenter" title="word_cover_pages_insert" src="http://xtremetips.com/wp-content/uploads/2012/02/word_cover_pages_insert.jpg" alt="inserting cover pages in word" width="275" height="341" /></a></p>
<p>Switch to the second blank document and here you can create the basic design that you want to use. For our cover page, we chose a shape by selecting Insert &gt; Shapes &gt; Block Arrows and then drew it on the screen. The shape was formatted by selecting it and using options available on the Drawing Tools &gt; Format tab. Opposite the shape we placed a long narrow image and then selected each object in turn and selected Drawing Tools (or Picture Tools) &gt; Format tab &gt; Send Backward &gt; Send Behind Text to place it behind the page text.</p>
<p>If one element should be in front of the other, in our case the arrow should be in front of the image, select it and choose Drawing Tools (or Picture Tools) &gt; Format tab &gt; Bring Forward to bring it in front of the other object but still placing it behind the text on the page.</p>
<p>Follow these steps to add the content placeholders to your cover page and to save it as a new built-in cover page.</p>
<h3>Step 1</h3>
<p>Switch to the document that contains Word’s own cover page. Locate an element such as the Title, Subtitle or Abstract and click on it. Locate the small grey marker above it, click that, right click and choose Copy.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_cover_pages_step1.jpg"><img class="aligncenter  wp-image-50" title="word_cover_pages_step1" src="http://xtremetips.com/wp-content/uploads/2012/02/word_cover_pages_step1.jpg" alt="step 1" width="340" height="202" /></a></p>
<h3>Step 2</h3>
<p>Return to your cover page, click where you want the element to go, right click and choose Paste. Repeat this process to add all the content placeholders you need for your cover page. To alter the format of an item, click the grey panel above it and format it using the options on the Home tab.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_cover_pages_step2.jpg"><img class="aligncenter  wp-image-51" title="word_cover_pages_step2" src="http://xtremetips.com/wp-content/uploads/2012/02/word_cover_pages_step2.jpg" alt="the second step" width="330" height="348" /></a></p>
<h3>Step 3</h3>
<p>When you’re done, press Control + A to select all the elements on your cover page. Choose Insert &gt; Cover Page &gt; Save Selection to Cover Page Gallery. Type a name for the cover page, from the Gallery dropdown list, select Cover Pages. Set the Category to Built-in, leave the other options untouched and click Ok.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/word_cover_pages_step3.jpg"><img class="aligncenter  wp-image-52" title="word_cover_pages_step3" src="http://xtremetips.com/wp-content/uploads/2012/02/word_cover_pages_step3.jpg" alt="step 3" width="269" height="230" /></a></p>
<p>Save a copy of your design as a regular Word document too in case you need to alter it in future.</p>
<p>To use your new cover page, simply select it as you would any cover page in Word. If you enter text into the cover page and later select a different cover page the text will be repurposed for that cover page automatically and vice versa. Copying the content placeholders from an existing Word cover page as we have done ensures the data is bound correctly so your cover page works the same as Word’s own designs.</p>
]]></content:encoded>
			<wfw:commentRss>http://xtremetips.com/diy-word-2007-2010-cover-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 best draw, sketch and paint iPad apps for artists and designers</title>
		<link>http://xtremetips.com/7-best-draw-sketch-and-paint-ipad-apps-for-artists-and-designers/</link>
		<comments>http://xtremetips.com/7-best-draw-sketch-and-paint-ipad-apps-for-artists-and-designers/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 18:56:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPad]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[art rage]]></category>
		<category><![CDATA[art studio]]></category>
		<category><![CDATA[artists]]></category>
		<category><![CDATA[artrage]]></category>
		<category><![CDATA[artstudio]]></category>
		<category><![CDATA[designers]]></category>
		<category><![CDATA[draw]]></category>
		<category><![CDATA[helen bradley]]></category>
		<category><![CDATA[ink pad]]></category>
		<category><![CDATA[inkpad]]></category>
		<category><![CDATA[omni sketch]]></category>
		<category><![CDATA[omnisketch]]></category>
		<category><![CDATA[paint]]></category>
		<category><![CDATA[paintbook]]></category>
		<category><![CDATA[sketch]]></category>
		<category><![CDATA[sketch club]]></category>
		<category><![CDATA[sketchbook pro]]></category>

		<guid isPermaLink="false">http://xtremetips.com/?p=26</guid>
		<description><![CDATA[I’ve been trawling the iPad store to find cool apps for designers who want to draw, paint, sketch and generally do stuff on their iPads. I’ve also read a lot and seen way too many reviewers who think it is ok to pay  $9.99 for an app with one brush, no layers and no eraser. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/omnisketch.jpg"><img class="aligncenter  wp-image-35" title="omnisketch" src="http://xtremetips.com/wp-content/uploads/2012/02/omnisketch.jpg" alt="" width="354" height="472" /></a></p>
<p>I’ve been trawling the iPad store to find cool apps for designers who want to draw, paint, sketch and generally do stuff on their iPads. I’ve also read a lot and seen way too many reviewers who think it is ok to pay  $9.99 for an app with one brush, no layers and no eraser. Seriously you have to wonder why people write that stupidity much less develop a following for doing so.</p>
<p>All these apps I’ve paid for and I use. In fact, I use them regularly – that’s why they are on this list, and I recommend them because they work, they are good value and I think you’ll love them too. They all have strengths and weaknesses, let’s face it you won’t get Photoshop or Illustrator for $4.99 but what you will get are some cool apps for doing great stuff on your iPad.</p>
<p>Here is my list, not in any real order just 7 killer apps for Designers, artists and anyone who wants to be creative on their iPad.</p>
<p><a title="omnisketch for ipad procedural drawing tool" href="http://www.google.com/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=4&amp;ved=0CDkQFjAD&amp;url=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Fomnisketch%2Fid370938461%3Fmt%3D8&amp;ei=KjW4Tva2OK3PiALY1L2AAQ&amp;usg=AFQjCNE4KZS9yJT2ynGzUeuexWulvJgpgw" target="_blank">OmniSketch</a> $0.99</p>
<p>This, hands down is my favorite app. It has 48 brushes – you get 24 and can buy 24 more. I has NO layers which is a downside and, while you can set the background color you can’t find white easily so you can’t set it to blue then go back to white easily. I know the developer realizes this is a problem so I’m hoping we’ll get a fix soon. I use this for drawing and for painting Seurat style images. I love its geometric and procedural brushes. It is a wonderful app and for 99cents it really rocks – it is way more deserving of attention than its current rating would suggest.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/omnisketch_heart.jpg"><img class="aligncenter  wp-image-36" title="omnisketch_heart" src="http://xtremetips.com/wp-content/uploads/2012/02/omnisketch_heart.jpg" alt="" width="354" height="472" /></a></p>
<p><a title="artstudio ipad app for drawing painting" href="http://itunes.apple.com/us/app/artstudio-for-ipad-draw-paint/id364017607?mt=8" target="_blank">ArtStudio</a> $2.99</p>
<p>This is a painting program but with so much more. I use it a lot to assemble images because it has layers and blend modes. It also has sophisticated selection tools so it is so much more than a painting program, in fact I treat it as a lightweight Photoshop wannabe app because it really has some very advanced tools for working with photos and for creating digital art. It is totally smart so it’s a must have app in my book.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/artstudio.jpg"><img class="aligncenter  wp-image-33" title="artstudio" src="http://xtremetips.com/wp-content/uploads/2012/02/artstudio.jpg" alt="" width="354" height="472" /></a></p>
<p><a title="inkpad vector drawing app for ipad" href="http://itunes.apple.com/us/app/inkpad/id400083414?mt=8" target="_blank">InkPad</a> $7.99</p>
<p>This is a vector drawing application and it is great even though it is at the pricier end of the scale. The benefit of vectors is that, although they are harder to create they can be sized very large indeed without being pixelated. This app has moveable toolbars, some sophisticated drawing tools and layers. If you’re a lover of illustrator then think of this as a cutdown version of Illustrator for the iPad. It is fun and full of tools you will love.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/inkpad.jpg"><img class="aligncenter  wp-image-34" title="inkpad" src="http://xtremetips.com/wp-content/uploads/2012/02/inkpad.jpg" alt="" width="354" height="265" /></a></p>
<p><a title="Sketch Club ipad app drawing sketching top apps for ipad" href="http://itunes.apple.com/us/app/sketch-club/id404414176?mt=8" target="_blank">Sketch Club</a> $1.99</p>
<p>Don’t let the funky icon of this app put you off it is a super cool app and one of my go to apps. It has layers and a huge array of blend modes. You can merge layers too so it’s as good for drawing as it is for photo manipulation and art. It has some procedural paint brushes as well as a cool text brush. It’s an app that I’m sure you will keep coming back to and it’s extremely good value.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/sketchclub.jpg"><img class="aligncenter  wp-image-31" title="sketchclub" src="http://xtremetips.com/wp-content/uploads/2012/02/sketchclub.jpg" alt="" width="354" height="472" /></a></p>
<p><a title="paintbook ipad app for drawing and painting top apps for ipad" href="http://itunes.apple.com/us/app/paintbook-3.2/id308008454?mt=8" target="_blank">Paintbook</a> 0.99 cents</p>
<p>Warning! this is a fantastic app but you will have to spend a little time learning how to use it. There is some good program help and some great videos – do yourself a favor and watch them! If you don’t – you won’t know a fraction of what this great app can do and you’ll be missing out on so much. I love it’s layers and the ability to add an image as either a layer or as a shape on a layer. This app is one of the most powerful you will own – just spend a little time learning how to use it and you’ll be glad you did.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/paintbook.jpg"><img class="aligncenter  wp-image-29" title="paintbook" src="http://xtremetips.com/wp-content/uploads/2012/02/paintbook.jpg" alt="" width="354" height="472" /></a></p>
<p><a title="sketchbook pro autodesk top ipad app for artists and designers" href="http://itunes.apple.com/us/app/sketchbook-pro-for-ipad/id364253478?mt=8" target="_blank">Sketchbook Pro</a> $4.99</p>
<p>Do yourself a favor and shell out for the pro version of this app to get the extra layers – the lite version is good but this one is a must  have. The app is from Autodesk and it’s great. East to use and very powerful. It has heaps of brushes from brushes that paint to ones that smudge and ones that paint halftones and splats and flowers. You can customize the toolbar so it shows the tools you use most often – I totally love this app and come back to it time and time again.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/sketchBook_pro.jpg"><img class="aligncenter  wp-image-30" title="sketchBook_pro" src="http://xtremetips.com/wp-content/uploads/2012/02/sketchBook_pro.jpg" alt="" width="354" height="265" /></a></p>
<p><a title="artrage art rage ipad app drawing painting layers blending" href="http://itunes.apple.com/us/app/artrage/id391432693?mt=8" target="_blank">ArtRage</a> $6.99</p>
<p>From the folks who made the PC app this is ArtRage for the iPad. It paints and it paints with everything from water color style to thick acrylics you slap around with a palette knife. It has layers too and blend modes and you can even have a reference image which gets pinned to the screen so you can see it to paint from it or you can place it over the canvas so it’s always there. You can use it to paint an original work of art or paint a photo using the smudge brush to turn photo pixels into paint – it is way too much fun and, for the price a “must have” app.</p>
<p style="text-align: center;"><a href="http://xtremetips.com/wp-content/uploads/2012/02/artrage2.jpg"><img class="aligncenter  wp-image-32" title="artrage2" src="http://xtremetips.com/wp-content/uploads/2012/02/artrage2.jpg" alt="" width="354" height="265" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://xtremetips.com/7-best-draw-sketch-and-paint-ipad-apps-for-artists-and-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

