<?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 Courses Cambridgeshire | JPL IT Training Ltd</title>
	<atom:link href="https://www.jplcomputer.co.uk/category/microsoft-office-courses-cambridgeshire/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.jplcomputer.co.uk/category/microsoft-office-courses-cambridgeshire/</link>
	<description>Microsoft Office Training and IT Consultancy</description>
	<lastBuildDate>Wed, 28 Aug 2024 06:50:42 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/jpl-logo.svg</url>
	<title>Microsoft Office Courses Cambridgeshire | JPL IT Training Ltd</title>
	<link>https://www.jplcomputer.co.uk/category/microsoft-office-courses-cambridgeshire/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Nested VLOOKUPs in Excel: Mastering Them to Unleash Their Power Further!</title>
		<link>https://www.jplcomputer.co.uk/2024/01/29/nested-vlookups-in-excel/</link>
		
		<dc:creator><![CDATA[Rachel]]></dc:creator>
		<pubDate>Mon, 29 Jan 2024 10:37:47 +0000</pubDate>
				<category><![CDATA[Excel Tips]]></category>
		<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Microsoft Office Courses Cambridgeshire]]></category>
		<guid isPermaLink="false">https://www.jplcomputer.co.uk/?p=9633</guid>

					<description><![CDATA[<p>Nested VLOOKUPs in Excel &#8211; using a step-by-step guide to learn and perfect the skill [&#8230;]</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2024/01/29/nested-vlookups-in-excel/">Nested VLOOKUPs in Excel: Mastering Them to Unleash Their Power Further!</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Nested VLOOKUPs in Excel &#8211; using a step-by-step guide to learn and perfect the skill of using them in a spreadsheet</h2>
<p><img decoding="async" width="94" height="87" class="alignright wp-image-7942 size-full" src="https://www.jplcomputer.co.uk/wp-content/uploads/2020/09/Excel-icon.jpeg" alt="Nested VLOOKUPs in Excel: Excel icon" data-wp-editing="1" />This week&#8217;s hint and tip is on nested VLOOKUPs in Excel. Nesting formulas allow you to push the formulas capabilities more and can also help if the data you are matching doesn&#8217;t have a simple straightforward match to one table of data. We cover nested VLOOKUPs in our <a href="https://www.jplcomputer.co.uk/master-class-excel-bronze-training-course/">Master Class Excel Bronze training course</a> but as they are so popular, we decided to do a hint and tip on it too. We are going to go through it now below.</p>
<p>&nbsp;</p>
<h4>What is a nested VLOOKUP?</h4>
<p>A Nested VLOOKUP, also known as a &#8216;VLOOKUP within a VLOOKUP&#8217;, is an advanced Excel technique that allows you to search for information in multiple layers of data. It allows you to take a simple VLOOKUP and stretch its power and usefulness further!</p>
<p>&nbsp;</p>
<h4>When Should You Use Nested VLOOKUPs?</h4>
<p>Nested VLOOKUPs are incredibly useful when you have complex spreadsheets, such as multi-level tables or databases. They allow you to find information that doesn&#8217;t always directly match from the value you are looking up to one table of data. Some examples of how they can be used are:</p>
<ol>
<li>Employee Salary Lookup: Finding the salary of an employee based on their department and job title</li>
<li>Inventory Management: Retrieving the quantity of a specific product in a particular warehouse</li>
<li>Employee Cost for a Job: Calculating the cost of an employees time on a job based on the hours worked and their hourly rate</li>
</ol>
<p>&nbsp;</p>
<h4>How to Build a Nested VLOOKUP</h4>
<p>Here&#8217;s a simplified example to get you started:</p>
<p>Let&#8217;s say you have an Excel workbook with three sheets: Sales, Prices and Products. In the Sales sheet, you want to find the total cost of a product based on the product&#8217;s ID and the individual price.</p>
<ol>
<li>Step 1: Use the first VLOOKUP to find the product&#8217;s ID based on its name:</li>
</ol>
<p style="padding-left: 40px;">=VLOOKUP(A2, Table1, 2, FALSE)</p>
<p style="padding-left: 40px;">In this formula, A2 is the product name, Table1 is the named range containing the product data, and 2 is the column number with the product ID.</p>
<p><img fetchpriority="high" decoding="async" width="474" height="172" class="size-full wp-image-9682 aligncenter" src="https://www.jplcomputer.co.uk/wp-content/uploads/2024/01/vlookups-in-excel-image-1.png" alt="vlookups in excel: first vlookup screenshot" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2024/01/vlookups-in-excel-image-1.png 474w, https://www.jplcomputer.co.uk/wp-content/uploads/2024/01/vlookups-in-excel-image-1-300x109.png 300w" sizes="(max-width: 474px) 100vw, 474px" /></p>
<ol start="2">
<li>Step 2: Use the second VLOOKUP to find the price based on the product ID and the year:</li>
</ol>
<p style="padding-left: 40px;">=VLOOKUP(<em>VLOOKUP(A2, Table1, 2, FALSE)</em>, Table2, 2, FALSE)</p>
<p style="padding-left: 40px;">In this formula, the <em>inner VLOOKUP</em> retrieves the product ID, and the outer VLOOKUP uses it to find the individual price in the &#8220;Prices&#8221; sheet.</p>
<p><img decoding="async" width="643" height="174" class="size-full wp-image-9683 aligncenter" src="https://www.jplcomputer.co.uk/wp-content/uploads/2024/01/vlookups-in-excel-image-2.png" alt="vlookups in excel: nested vlookup screenshot" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2024/01/vlookups-in-excel-image-2.png 643w, https://www.jplcomputer.co.uk/wp-content/uploads/2024/01/vlookups-in-excel-image-2-300x81.png 300w" sizes="(max-width: 643px) 100vw, 643px" /></p>
<ol start="3">
<li>Finally once you have done the nested VLOOKUP, you need to times all of this by the quantity cell to work out the Total Cost.</li>
</ol>
<p><img decoding="async" width="653" height="159" class="size-full wp-image-9684 aligncenter" src="https://www.jplcomputer.co.uk/wp-content/uploads/2024/01/vlookups-in-excel-image-3.png" alt="vlookups in excel: nested vlookup plus multiplication calculation screenshot" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2024/01/vlookups-in-excel-image-3.png 653w, https://www.jplcomputer.co.uk/wp-content/uploads/2024/01/vlookups-in-excel-image-3-300x73.png 300w" sizes="(max-width: 653px) 100vw, 653px" /></p>
<p>&nbsp;</p>
<h4>Tips for Success:</h4>
<ul>
<li>Always set the last argument of your VLOOKUP functions to FALSE for exact matches</li>
<li>Ensure consistent data formatting and structure in both sheets</li>
<li>Debug your nested VLOOKUPs step by step to catch errors</li>
<li>Work &#8216;inside out&#8217;, this means your first VLOOKUP then becomes your lookup value for your second VLOOKUP</li>
</ul>
<p>&nbsp;</p>
<p>With the ability to navigate through multiple layers of data, nested VLOOKUPs empower you to unlock the full potential of your Excel skills. Whether you&#8217;re managing finances or analysing data, mastering this advanced technique will make you an Excel superstar.</p>
<p>Level up your Excel game today and embrace the magic of nested VLOOKUPs!</p>
<p>&nbsp;</p>
<h4>Worked example video</h4>
<p>The video below shows you how you can use this feature in the spreadsheet attached <a href="https://www.jplcomputer.co.uk/wp-content/uploads/2023/12/Nested-VLOOKUPs-in-Excel-example.xlsx">here</a>. <em>(clicking here will download a copy to your computer so you can try it out!)</em>. We hope that you find the video useful and enjoy learning about it!</p>
<p>Take a look below at the video to find out more and then try it out on your own computer!</p>
<p><iframe title="Nested VLOOKUPs in Excel" src="https://www.youtube.com/embed/Dc-8WByBLlQ?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>We hope you have enjoyed this hint and tip on Nested VLOOKUPs in Excel. Why not take a look at our previous video hint and tip on <a href="https://www.jplcomputer.co.uk/2023/12/15/vlookups-in-excel/">VLOOKUPS in your Excel spreadsheets</a>?</p>
<p>&nbsp;</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2024/01/29/nested-vlookups-in-excel/">Nested VLOOKUPs in Excel: Mastering Them to Unleash Their Power Further!</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Word Shortcuts Part 6 &#8211; Shift+F3, Ctrl+F6 and Ctrl+Alt+S, Ctrl+Enter Key and Ctrl+Shift+Enter shortcut keys</title>
		<link>https://www.jplcomputer.co.uk/2023/07/19/word-shortcuts-part-6/</link>
		
		<dc:creator><![CDATA[Rachel]]></dc:creator>
		<pubDate>Wed, 19 Jul 2023 09:00:22 +0000</pubDate>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Microsoft Office Courses Cambridgeshire]]></category>
		<category><![CDATA[Word Tips]]></category>
		<guid isPermaLink="false">https://www.jplcomputer.co.uk/?p=9270</guid>

					<description><![CDATA[<p>Word Shortcuts Part 6 – the Shift+F3 and Ctrl+F6 function keys and the Ctrl+Alt+S, Ctrl+Enter [&#8230;]</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2023/07/19/word-shortcuts-part-6/">Word Shortcuts Part 6 &#8211; Shift+F3, Ctrl+F6 and Ctrl+Alt+S, Ctrl+Enter Key and Ctrl+Shift+Enter shortcut keys</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Word Shortcuts Part 6 – the Shift+F3 and Ctrl+F6 function keys and the Ctrl+Alt+S, Ctrl+Enter Key and Ctrl+Shift+Enter shortcut keys, have you used them?</h2>
<p><img decoding="async" width="115" height="105" class="alignright wp-image-8408" src="https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Word-icon-e1628864504273.jpg" alt="Word Shortcuts Part 6: Word icon" /></p>
<p>This week&#8217;s hint and tip is on Word shortcuts part 6. Part 6 of these shortcuts covers the function buttons Shift+F3 and Ctrl+F6 function keys and also the shortcut keys for inserting a split into your Word documents, inserting a page break and inserting a column break. Some of these are covered on our <a href="https://www.jplcomputer.co.uk/basic-word-training-course/">Basic Word training course</a> but not all are necessarily covered, so we decided to do a hint and tip on them. We are going to go through them now below.</p>
<p>&nbsp;</p>
<h4>Shift+F3 Function Key</h4>
<p>Shift+F3 – allows you to change the text between upper case, lower case and capitalise each word. Select the text you want to apply the change of text case to and then press Shift+F3. This will first change the text to upper case, then lower case and finally capitalise each word (if you have selected less than a sentence) or sentence case (if you have selected more than a sentence).</p>
<p><img decoding="async" width="1000" height="347" class="aligncenter wp-image-9348 size-full" src="https://www.jplcomputer.co.uk/wp-content/uploads/2023/07/ShiftF3-change-case-of-text-e1656347579903.png" alt="Word Shortcuts Part 6: Shift+F3 - change case of text" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2023/07/ShiftF3-change-case-of-text-e1656347579903.png 1000w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/07/ShiftF3-change-case-of-text-e1656347579903-300x104.png 300w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/07/ShiftF3-change-case-of-text-e1656347579903-768x266.png 768w" sizes="(max-width: 1000px) 100vw, 1000px" /></p>
<p>&nbsp;</p>
<h4>Ctrl+F6 Function Key</h4>
<p>Ctrl+F6 – allows you to switch to the next document window if you have more than one document open. First make sure you are in one Word document, then pressing Ctrl+F6 it will switch to another word document window you have open. It will keep cycling between all the Word document windows you have open each time you press the shortcut.</p>
<p><img decoding="async" width="850" height="262" class="aligncenter wp-image-9350 size-full" src="https://www.jplcomputer.co.uk/wp-content/uploads/2023/07/CtrlF6-switch-between-word-document-windows-e1656347694449.png" alt="Word shortcuts part 6: Ctrl+F6 - switch between word document windows" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2023/07/CtrlF6-switch-between-word-document-windows-e1656347694449.png 850w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/07/CtrlF6-switch-between-word-document-windows-e1656347694449-300x92.png 300w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/07/CtrlF6-switch-between-word-document-windows-e1656347694449-768x237.png 768w" sizes="(max-width: 850px) 100vw, 850px" /></p>
<p>&nbsp;</p>
<h4>Shortcut Keys for inserting a split in a document window, inserting a page break and inserting a column break</h4>
<p>There are many shortcut key combinations in all of the Microsoft Office packages and we are going to go through 3 more now. The shortcut keys we are looking at are for inserting a split into your document window, inserting a page break in your document and inserting a column break in your document.</p>
<p>The shortcut key combination for inserting a split into your Word document window is the Ctrl key, the Alt key and the letter S on your keyboard. Then the shortcut key combination for inserting a page break in your document is the Ctrl key and the Enter key on your keyboard. Finally the shortcut key combination for inserting a column break in your document is the Ctrl key, the Shift key and the Enter key on your keyboard. Using these shortcuts can save you time when working in Word on a daily basis.</p>
<p><img decoding="async" width="1000" height="64" class="aligncenter wp-image-9346 size-full" src="https://www.jplcomputer.co.uk/wp-content/uploads/2023/07/Ctrlalts-ctrlenter-ctrlshiftenter-e1656344449562.png" alt="Word Navigation Shortcuts Part 4: Ctrl+alt+s, ctrl+enter, ctrl+shift+enter keyboard shortcuts" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2023/07/Ctrlalts-ctrlenter-ctrlshiftenter-e1656344449562.png 1000w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/07/Ctrlalts-ctrlenter-ctrlshiftenter-e1656344449562-300x19.png 300w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/07/Ctrlalts-ctrlenter-ctrlshiftenter-e1656344449562-768x49.png 768w" sizes="(max-width: 1000px) 100vw, 1000px" /></p>
<p>&nbsp;</p>
<h4>Summary of the Shortcuts above&#8230;</h4>
<ul>
<li><strong>Shift+F3:</strong> allows you to switch between upper case, lower case and capitalise each word/sentence case</li>
<li><strong>Ctrl+F6:</strong> switches between Word document windows if you have more than one open at a time</li>
<li><strong>Ctrl+Alt+S:</strong> inserts a split in a Word document window</li>
<li><strong>Ctrl+Enter:</strong> inserts a page break in a document</li>
<li><strong>Ctrl+Shift+Enter:</strong> inserts a column break in a document</li>
</ul>
<p>&nbsp;</p>
<p>The video below shows you how you can use these shortcuts in your documents to save you time. Some of these you might know already but some you might not!</p>
<p>Take a look below at the video to find out more and then try them out on your own computer!</p>
<p><iframe title="Word Shortcuts Part 6" src="https://www.youtube.com/embed/JV7eExsCZfs?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>We hope you have enjoyed this hint and tip on Word shortcuts part 6. Why not take a look at our previous video hint and tip on <a href="https://www.jplcomputer.co.uk/2023/07/05/word-navigation-shortcuts-part-4/">part 4 of our Word Navigation shortcuts</a>?</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2023/07/19/word-shortcuts-part-6/">Word Shortcuts Part 6 &#8211; Shift+F3, Ctrl+F6 and Ctrl+Alt+S, Ctrl+Enter Key and Ctrl+Shift+Enter shortcut keys</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Excel Shortcuts Part 5 &#8211; F9, Ctrl+F9 and some other useful shortcuts</title>
		<link>https://www.jplcomputer.co.uk/2023/05/01/excel-shortcuts-part-5/</link>
		
		<dc:creator><![CDATA[Rachel]]></dc:creator>
		<pubDate>Mon, 01 May 2023 09:00:16 +0000</pubDate>
				<category><![CDATA[Excel Tips]]></category>
		<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Microsoft Office Courses Cambridgeshire]]></category>
		<guid isPermaLink="false">https://www.jplcomputer.co.uk/?p=9160</guid>

					<description><![CDATA[<p>Excel Shortcuts Part 5 – the F9 and Ctrl+F9 function keys and some other useful [&#8230;]</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2023/05/01/excel-shortcuts-part-5/">Excel Shortcuts Part 5 &#8211; F9, Ctrl+F9 and some other useful shortcuts</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="et_pb_module et_pb_text et_pb_text_0 et_pb_text_align_left et_pb_bg_layout_light">
<div class="et_pb_text_inner">
<h2>Excel Shortcuts Part 5 – the F9 and Ctrl+F9 function keys and some other useful shortcut keys, have you used them?</h2>
</div>
</div>
<p><img decoding="async" width="94" height="87" class="alignright wp-image-7942 size-full" src="https://www.jplcomputer.co.uk/wp-content/uploads/2020/09/Excel-icon.jpeg" alt="Excel Shortcuts Part 5: Excel icon" />This week&#8217;s hint and tip is on Excel shortcuts part 5. Part 5 of these shortcuts covers the function buttons F9 and F9 with the Ctrl key. It also covers the lesser known shortcut keys for applying the strikethrough, currency and percentage formatting. We cover some shortcuts in our <a href="https://www.jplcomputer.co.uk/basic-excel-training-course/">Basic Excel training course</a>, but these aren&#8217;t all covered in it so we decided to do a hint and tip on them. We are going to go through them now below.</p>
<p>&nbsp;</p>
<h4>F9 Function Key</h4>
<p>The F9 function key calculates your formulas for you in your spreadsheet if auto calculate is turned off. Auto calculate normally is always on, so if any number used in a formula is changed, it will automatically update the formula. However if this is turned off, then the F9 function key will update any formulas if changes have been made.</p>
<p><img decoding="async" width="1000" height="247" class="aligncenter wp-image-9335 size-full" src="https://www.jplcomputer.co.uk/wp-content/uploads/2023/05/F9-update-formula-manually-e1655997711845.png" alt="Excel Shortcuts Part 5: F9 - update formula manually screenshot" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2023/05/F9-update-formula-manually-e1655997711845.png 1000w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/05/F9-update-formula-manually-e1655997711845-300x74.png 300w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/05/F9-update-formula-manually-e1655997711845-768x190.png 768w" sizes="(max-width: 1000px) 100vw, 1000px" /></p>
<p>&nbsp;</p>
<h4>Ctrl+F9 Function Key</h4>
<p>The Ctrl+F9 function key shortcut allows you to minimise an Excel workbook window down to an icon. This will then show the window you have open behind it on the screen instead.</p>
<p><img decoding="async" width="1000" height="247" class="aligncenter wp-image-9337 size-full" src="https://www.jplcomputer.co.uk/wp-content/uploads/2023/05/CtrlF9-to-minimise-workbook-e1655997814791.png" alt="Excel shortcuts part 5: Ctrl+F9 - to minimise workbook screenshot" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2023/05/CtrlF9-to-minimise-workbook-e1655997814791.png 1000w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/05/CtrlF9-to-minimise-workbook-e1655997814791-300x74.png 300w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/05/CtrlF9-to-minimise-workbook-e1655997814791-768x190.png 768w" sizes="(max-width: 1000px) 100vw, 1000px" /></p>
<p>&nbsp;</p>
<h4>Shortcut Keys for applying the strikethrough, currency and percentage formatting</h4>
<p>There are lots of shortcut key combinations in Excel and we are going to go through 3 more now. The shortcut keys that we are going to look at are for applying the strikethrough, currency and percentage formatting.</p>
<p>The shortcut key combination for applying the strikethrough formatting is Ctrl+5.</p>
<p>Next the shortcut key combination for applying the currency formatting with 2 decimal places is Ctrl+Shift+$.</p>
<p>Finally the shortcut key combination for applying the percentage formatting with no decimal places is Ctrl+Shift+%.</p>
<p><img decoding="async" width="1000" height="77" class="aligncenter wp-image-9338 size-full" src="https://www.jplcomputer.co.uk/wp-content/uploads/2023/05/Ctrl5-Ctrlshift-Ctrlshift-e1655997981962.png" alt="Excel shortcuts part 5: Ctrl+5, Ctrl+shift+$, Ctrl+shift+% keyboard shortcuts" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2023/05/Ctrl5-Ctrlshift-Ctrlshift-e1655997981962.png 1000w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/05/Ctrl5-Ctrlshift-Ctrlshift-e1655997981962-300x23.png 300w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/05/Ctrl5-Ctrlshift-Ctrlshift-e1655997981962-768x59.png 768w" sizes="(max-width: 1000px) 100vw, 1000px" /></p>
<p>All of these shortcut key combinations can be useful in saving you time in regular use of Excel.</p>
<p>&nbsp;</p>
<h4>Summary of the Shortcuts above&#8230;</h4>
<ul>
<li><strong>F9:</strong> calculates formulas after a change if auto calculate is turned off</li>
<li><strong>Ctrl+F9:</strong> minimises an Excel workbook window down to an icon</li>
<li><strong>Ctrl+5:</strong> applies strikethrough formatting</li>
<li><strong>Ctrl+Shift+$:</strong> applies currency formatting with 2 decimal places</li>
<li><strong>Ctrl+Shift+%:</strong> applies percentage formatting with no decimal places</li>
</ul>
<p>&nbsp;</p>
<p>The video below shows you how you can use these shortcuts in your spreadsheets to save you time. Some of these you might know already but some you might not!</p>
<p>Take a look below at the video to find out more and then try them out on your own computer!</p>
<p><iframe title="Excel Shortcuts Part 5" src="https://www.youtube.com/embed/v7rtwVPKBe0?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>We hope you have enjoyed this hint and tip on Excel shortcuts part 5. Why not take a look at our previous video hint and tip on <a href="https://www.jplcomputer.co.uk/2023/04/03/word-navigation-shortcuts-part-3/">part 3 of our Word navigation shortcuts</a>?</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2023/05/01/excel-shortcuts-part-5/">Excel Shortcuts Part 5 &#8211; F9, Ctrl+F9 and some other useful shortcuts</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Word Navigation Shortcuts Part 3 &#8211; Shift+Left, Right, Up or Down keys, and the Ctrl+End and Ctrl+Home key shortcut keys</title>
		<link>https://www.jplcomputer.co.uk/2023/04/03/word-navigation-shortcuts-part-3/</link>
		
		<dc:creator><![CDATA[Rachel]]></dc:creator>
		<pubDate>Mon, 03 Apr 2023 08:30:00 +0000</pubDate>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Microsoft Office Courses Cambridgeshire]]></category>
		<category><![CDATA[Word Tips]]></category>
		<guid isPermaLink="false">https://www.jplcomputer.co.uk/?p=9244</guid>

					<description><![CDATA[<p>Word Navigation Shortcuts Part 3 – the Shift+Left arrow, Shift+Right arrow, Shift+Up arrow, Shift+Down arrow, [&#8230;]</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2023/04/03/word-navigation-shortcuts-part-3/">Word Navigation Shortcuts Part 3 &#8211; Shift+Left, Right, Up or Down keys, and the Ctrl+End and Ctrl+Home key shortcut keys</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Word Navigation Shortcuts Part 3 – the Shift+Left arrow, Shift+Right arrow, Shift+Up arrow, Shift+Down arrow, Ctrl+End, Ctrl+Home keys, have you used them?</h2>
<p><img decoding="async" width="115" height="105" class="alignright wp-image-8408" src="https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Word-icon-e1628864504273.jpg" alt="Word Navigation Shortcuts Part 3: Word icon" /></p>
<p>This week&#8217;s hint and tip is on Word Navigation shortcuts part 3. Part 3 of these shortcuts covers the Shift+Left arrow, Shift+Right arrow, Shift+Up arrow, Shift+Down arrow and the Ctrl+End and Ctrl+Home Key shortcut keys. Some of these are covered on our <a href="https://www.jplcomputer.co.uk/basic-word-training-course/">Basic Word training course</a> but not all are necessarily covered, so we decided to do a hint and tip on them. We are going to go through them now below.</p>
<p>&nbsp;</p>
<h4>Shift+Left Arrow Keyboard Shortcut</h4>
<p>The Shift+Left arrow keyboard shortcut can be used in Word to select one character to the left of where the cursor is. To use this firstly click into your Word document. From here press the Shift key followed by the left arrow key. This will have then selected one character to the left of where your cursor is.</p>
<p><img decoding="async" width="300" height="79" class="aligncenter wp-image-9286 size-medium" src="https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/Shiftleft-arrow-300x79.png" alt="Word navigation shortcuts part 3: Shift+left arrow keyboard shortcut" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/Shiftleft-arrow-300x79.png 300w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/Shiftleft-arrow.png 510w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>&nbsp;</p>
<h4>Shift+Right Arrow Keyboard Shortcut</h4>
<p>Another useful keyboard shortcut in Word is Shift+Right arrow key. This will select one character to the right of where the cursor is. To begin with, first click into your Word document. Once here press the Shift key followed by the right arrow key. This will have then selected one character to the right of where your cursor is.</p>
<p><img decoding="async" width="300" height="79" class="aligncenter size-medium wp-image-9287" src="https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/Shiftright-arrow-300x79.png" alt="Word navigation shortcuts part 3: Shift+right arrow keyboard shortcut" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/Shiftright-arrow-300x79.png 300w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/Shiftright-arrow.png 510w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>&nbsp;</p>
<h4>Shift+Up Arrow Keyboard Shortcut</h4>
<p>The Shift+Up arrow keyboard shortcut can be used in Word to select one line up from where the cursor is. To use this firstly click into your Word document. From here press the Shift key followed by the up arrow key. This will have then selected one line up from where your cursor is.</p>
<p><img decoding="async" width="300" height="79" class="aligncenter size-medium wp-image-9288" src="https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/Shiftup-arrow-300x79.png" alt="Word navigation shortcuts part 3: Shift+up arrow keyboard shortcut" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/Shiftup-arrow-300x79.png 300w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/Shiftup-arrow.png 510w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>&nbsp;</p>
<h4>Shift+Down Arrow Keyboard Shortcut</h4>
<p>Another useful keyboard shortcut in Word is Shift+Down arrow key. This will select one line down from where the cursor is. To begin with, first click into your Word document. Once here press the Shift key followed by the down arrow key. This will have then selected one line down from where your cursor is.</p>
<p><img decoding="async" width="300" height="79" class="aligncenter size-medium wp-image-9285" src="https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/Shiftdown-arrow-300x79.png" alt="Word navigation shortcuts part 3: Shift+down arrow keyboard shortcut" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/Shiftdown-arrow-300x79.png 300w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/Shiftdown-arrow.png 510w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>&nbsp;</p>
<h4>Shortcuts for using the End and Home Keys alongside the Ctrl Key</h4>
<p>There are many keys on your keyboard that you use on a daily basis but then there are also some that tend to get ignored a bit. These keys often have useful shortcut options and the End and Home keys are two of these. We are going to look at shortcuts for these two keys alongside the Ctrl key on your keyboard.</p>
<p>The Ctrl+End key moves the cursor to the end of the document. Whereas the Ctrl+Home key moves the cursor to the beginning of the document.</p>
<p><img decoding="async" width="1024" height="126" class="aligncenter wp-image-9289 size-large" src="https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/CtrlEnd-key-CtrlHome-Key-1024x126.png" alt="Word Navigation Shortcuts Part 3: Ctrl+End key and Ctrl+Home Key keyboard shortcuts" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/CtrlEnd-key-CtrlHome-Key-1024x126.png 1024w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/CtrlEnd-key-CtrlHome-Key-300x37.png 300w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/CtrlEnd-key-CtrlHome-Key-768x94.png 768w, https://www.jplcomputer.co.uk/wp-content/uploads/2023/04/CtrlEnd-key-CtrlHome-Key.png 1125w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
<p>&nbsp;</p>
<h4>Summary of the Shortcuts above&#8230;</h4>
<ul>
<li><strong>Shift+Left Arrow:</strong> selects one character to the left of where cursor is</li>
<li><strong>Shift+Right Arrow:</strong> selects one character to the right of where cursor is</li>
<li><strong>Shift+Up Arrow:</strong> selects one line up from where cursor is</li>
<li><strong>Shift+Down Arrow:</strong> selects one line down from where cursor is</li>
<li><strong>Ctrl+End Key:</strong> moves the cursor to the end of the document</li>
<li><strong>Ctrl+Home Key:</strong> moves the cursor to the beginning of the document</li>
</ul>
<p>&nbsp;</p>
<p>The video below shows you how you can use these shortcuts in your documents to save you time. Some of these you might know already but some you might not!</p>
<p>Take a look below at the video to find out more and then try them out on your own computer!</p>
<p><iframe title="Word Navigation Shortcuts Part 3" src="https://www.youtube.com/embed/tuGy-34FSco?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>We hope you have enjoyed this hint and tip on Word Navigation shortcuts part 3. Why not take a look at our previous video hint and tip on <a href="https://www.jplcomputer.co.uk/2023/03/06/word-shortcuts-part-4/">part 4 of our Word shortcuts</a>?</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2023/04/03/word-navigation-shortcuts-part-3/">Word Navigation Shortcuts Part 3 &#8211; Shift+Left, Right, Up or Down keys, and the Ctrl+End and Ctrl+Home key shortcut keys</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Array Spill in Excel &#8211; have you tried using this before?</title>
		<link>https://www.jplcomputer.co.uk/2022/01/05/array-spill-in-excel/</link>
		
		<dc:creator><![CDATA[JPL]]></dc:creator>
		<pubDate>Wed, 05 Jan 2022 10:00:22 +0000</pubDate>
				<category><![CDATA[Excel Tips]]></category>
		<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Microsoft Office Courses Cambridgeshire]]></category>
		<guid isPermaLink="false">https://www.jplcomputer.co.uk/?p=8921</guid>

					<description><![CDATA[<p>Array Spill in Excel &#8211; another way to do formulas and calculations in Excel that [&#8230;]</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2022/01/05/array-spill-in-excel/">Array Spill in Excel &#8211; have you tried using this before?</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Array Spill in Excel &#8211; another way to do formulas and calculations in Excel that can save you time. Have you used it?</h2>
<p><img decoding="async" width="94" height="87" class="size-full wp-image-7942 alignright" src="https://www.jplcomputer.co.uk/wp-content/uploads/2020/09/Excel-icon.jpeg" alt="Array Spill in Excel: Excel icon" />This week’s hint and tip is about the array spill feature in Excel. We are looking at how you can use this feature in Excel to save you time when creating formulas. This is covered on our <a href="https://www.jplcomputer.co.uk/master-class-excel-silver-training-course/">Master Class Excel Silver training course</a>, but we decided to do a hint and tip on it as well. We are going to go through it now below.</p>
<p>&nbsp;</p>
<h4>What is array spill?</h4>
<p>Array spill is a feature where formulas in Excel can be spilled easily into adjacent cells across or down instead of copying them using the fill copy button. This can often be a useful way of creating a large amount of formulas quickly and efficiently. Spill means that a formula has resulted in multiple values and those values have been placed in the neighbouring cells.</p>
<p>The associated video below explains this well using 2 examples. You can also download the spreadsheet in the video by clicking <a href="https://www.jplcomputer.co.uk/wp-content/uploads/2021/12/Array-Spill-in-Excel-example-spreadsheet.xlsx">here</a> <em>(clicking here will download a copy to your computer so you can try it out!)</em>.</p>
<p>&nbsp;</p>
<h4>Example 1</h4>
<p>The first example looks at multiplying sales unit by quantity in 2 different ways.</p>
<p>To see the different formulas see below:</p>
<p><img decoding="async" width="752" height="154" class="size-full wp-image-8923 aligncenter" src="https://www.jplcomputer.co.uk/wp-content/uploads/2021/12/Array-Spill-1.png" alt="Array Spill in Excel: Example 1" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2021/12/Array-Spill-1.png 752w, https://www.jplcomputer.co.uk/wp-content/uploads/2021/12/Array-Spill-1-300x61.png 300w" sizes="(max-width: 752px) 100vw, 752px" /></p>
<p>The ‘conventional way’ is by entering a formula into B5 and then copying it across row 7.</p>
<p>The newer way is by entering a formula like the one in B7 which spills across automatically to column G. The formulas can only be edited in B7, the other associated formulas spilled across are greyed out.</p>
<p>&nbsp;</p>
<h4>Example 2</h4>
<p>Another example is show in the IF statement exercise below:</p>
<p><img decoding="async" width="752" height="238" class="size-full wp-image-8924 aligncenter" src="https://www.jplcomputer.co.uk/wp-content/uploads/2021/12/Array-Spill-2.png" alt="Array Spill in Excel: Example 2" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2021/12/Array-Spill-2.png 752w, https://www.jplcomputer.co.uk/wp-content/uploads/2021/12/Array-Spill-2-300x95.png 300w" sizes="(max-width: 752px) 100vw, 752px" /></p>
<p>Although the cells used here are relative cells it would work if one of the two cells in a formula is absolute.</p>
<p>See below:</p>
<p><img decoding="async" width="752" height="157" class="size-full wp-image-8925 aligncenter" src="https://www.jplcomputer.co.uk/wp-content/uploads/2021/12/Array-Spill-3.png" alt="Array Spill in Excel: Example 3" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2021/12/Array-Spill-3.png 752w, https://www.jplcomputer.co.uk/wp-content/uploads/2021/12/Array-Spill-3-300x63.png 300w" sizes="(max-width: 752px) 100vw, 752px" /></p>
<p>&nbsp;</p>
<p>The video below goes through the Array Spill examples that you can see in the spreadsheet above. It talks you through how this array spill feature can be used in Excel to copy formulas in your spreadsheet. We hope that you find the video useful and enjoy learning about it!</p>
<p>Take a look below at the video to find out more!</p>
<p><iframe title="Array Spill in Excel Feature" src="https://www.youtube.com/embed/ZLx2Ow0Vd4A?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>For more information of some of these features see the content of our Master Class Silver Course <a href="https://www.jplcomputer.co.uk/master-class-excel-silver-training-course/">here</a>.</p>
<p>&nbsp;</p>
<p>We hope you liked this hint and tip on the Array Spill in Excel feature, why not take a look at our previous one on the <a href="https://www.jplcomputer.co.uk/2021/12/15/filter-vs-vlookup-function/">FILTER and VLOOKUP Functions in Excel</a>?</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2022/01/05/array-spill-in-excel/">Array Spill in Excel &#8211; have you tried using this before?</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Creating Meetings in Outlook &#8211; have you created meetings before in Outlook?</title>
		<link>https://www.jplcomputer.co.uk/2021/10/06/creating-meetings-in-outlook/</link>
		
		<dc:creator><![CDATA[JPL]]></dc:creator>
		<pubDate>Wed, 06 Oct 2021 09:00:56 +0000</pubDate>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Microsoft Office Courses Cambridgeshire]]></category>
		<category><![CDATA[Outlook Tips]]></category>
		<guid isPermaLink="false">https://www.jplcomputer.co.uk/?p=8547</guid>

					<description><![CDATA[<p>Creating Meetings in Outlook &#8211; how do I set up a meeting with someone in [&#8230;]</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2021/10/06/creating-meetings-in-outlook/">Creating Meetings in Outlook &#8211; have you created meetings before in Outlook?</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Creating Meetings in Outlook &#8211; how do I set up a meeting with someone in Outlook?</h2>
<p><img decoding="async" width="115" height="115" class="wp-image-5250 alignright" src="https://www.jplcomputer.co.uk/wp-content/uploads/2020/10/logo-outlook-34065-e1628866651411.png" alt="Creating meetings in outlook: Outlook icon" />This week’s hint and tip is about creating meetings in Outlook and the ways you can create them in Outlook. This is covered on our <a href="https://www.jplcomputer.co.uk/outlook-training-course-content">Outlook training course</a>, but we also we decided to do a hint and tip on it. We are going to go through it now below.</p>
<p>&nbsp;</p>
<h4>Meetings in Outlook</h4>
<p>Meetings are very similar to appointments but they require another person or persons to accept the event so that both events (meeting dates) appear in both calendars. The invitation is sent by email requiring a response.</p>
<p>When creating meetings it’s sometimes useful to have both emails and calendar open at the same time. To do this, right hand click on calendar icon and select open in new window option (when closing Outlook down use File, Exit rather than the cross as Outlook will remember the view next time you open it up)</p>
<p>&nbsp;</p>
<h4>How to set up a meeting</h4>
<p>When creating meetings, you can either create them by using the meeting option under New Items (this will open a window like that seen below) or you can create an email straight from an email. To create a meeting from an email, click and drag the email over the calendar icon and set up the details when the meeting window comes up.</p>
<p><img decoding="async" width="1024" height="553" class="aligncenter wp-image-8553 " src="https://www.jplcomputer.co.uk/wp-content/uploads/2021/09/new-meeting-image-1024x553.png" alt="Creating meetings in Outlook: screenshot of the new meeting window" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2021/09/new-meeting-image-1024x553.png 1024w, https://www.jplcomputer.co.uk/wp-content/uploads/2021/09/new-meeting-image-300x162.png 300w, https://www.jplcomputer.co.uk/wp-content/uploads/2021/09/new-meeting-image-768x415.png 768w, https://www.jplcomputer.co.uk/wp-content/uploads/2021/09/new-meeting-image.png 1341w" sizes="(max-width: 1024px) 100vw, 1024px" /></p>
<p>When creating a new meeting in Outlook there are a number of fields that you will fill in. These are:</p>
<ul>
<li><strong>Title:</strong> this is where you type in the title of the meeting</li>
<li><strong>Required:</strong> this is where you insert the email addresses of the attendees that are required to attend the meeting</li>
<li><strong>Optional:</strong> this is where you can insert any email addresses of attendees to which this meeting is optional</li>
<li><strong>Start and End time:</strong> this is where you put in the details of the date and time of the meeting</li>
<li><strong>Location:</strong> this is where you put in the location in which the meeting will occur</li>
<li><strong>&#8216;White space under location field&#8217;:</strong> this is where you type in a message for all the attendees with any extra information or important details</li>
</ul>
<p>&nbsp;</p>
<p>Once you have set up the meeting, click on the &#8216;Send&#8217; button. This will then send out the meeting request that you have just set up.</p>
<p>The attendees will then have the option to accept or reject the meeting request that you have sent to them. It will appear as an email in their inbox in Outlook.</p>
<p>&nbsp;</p>
<p>We hope you have enjoyed this hint and tip on creating meetings in Outlook. Why not take a look at our previous one on <a href="https://www.jplcomputer.co.uk/2021/10/01/custom-printing-in-word/">printing a custom range of pages in Word</a>?</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2021/10/06/creating-meetings-in-outlook/">Creating Meetings in Outlook &#8211; have you created meetings before in Outlook?</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Word Document Protection &#8211; how to prevent editing in part of a document</title>
		<link>https://www.jplcomputer.co.uk/2021/05/26/word-document-protection/</link>
		
		<dc:creator><![CDATA[JPL]]></dc:creator>
		<pubDate>Wed, 26 May 2021 09:00:39 +0000</pubDate>
				<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Microsoft Office Courses Cambridgeshire]]></category>
		<category><![CDATA[Word Tips]]></category>
		<guid isPermaLink="false">https://www.jplcomputer.co.uk/?p=6265</guid>

					<description><![CDATA[<p>Word Document Protection &#8211; using features to protect part of your documents from being edited, [&#8230;]</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2021/05/26/word-document-protection/">Word Document Protection &#8211; how to prevent editing in part of a document</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Word Document Protection &#8211; using features to protect part of your documents from being edited, have you done this before? Watch the video to learn more</h2>
<p><img decoding="async" class=" wp-image-8408 alignright" src="https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Word-icon-e1628860338811.jpg" alt="Word Document Protection: Word icon" />This week&#8217;s hint and tip is on Word documents protection. In this hint and tip we are looking at a way in which you can protect just part of your Word document so that only part of it can be edited. This topic is covered in our <a href="https://www.jplcomputer.co.uk/intermediate-word-training-course/">Intermediate Word training course</a> but we decided to do a hint and tip on it as well. We are going to go through it now below.</p>
<p>&nbsp;</p>
<h4>Styles to use in Word Documents Protection</h4>
<p>In this blog we shall look at protecting documents in Word. We shall focus on Styles and protecting those whilst allowing other people sharing this document to be able to change the text in Normal Style and add text using the Normal Style. The Normal Style in Word is the default style used by most people when writing letters and documents in Word. Other Styles like Headings are used when you wish to apply subsequently Table of Contents and Multi Level lists etc.</p>
<p>&nbsp;</p>
<h4>How to set up the Document to Protect it</h4>
<p>These are the steps to go through and a video of this procedure can also be watched below.</p>
<ol>
<li>Type your document using Headings where required. It is the Headings which will be protected. See below example</li>
</ol>
<p><img decoding="async" width="411" height="273" class="wp-image-6297 aligncenter" src="https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-1-image.png" alt="Word Documents Protection: Step 1 typing headings image" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-1-image.png 411w, https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-1-image-300x199.png 300w" sizes="(max-width: 411px) 100vw, 411px" /></p>
<ol start="2">
<li>Then we use the Developer Tab, Restrict Editing command button</li>
</ol>
<p><img decoding="async" width="401" height="321" class="wp-image-6298 size-full aligncenter" src="https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-2-image.png" alt="Word Documents Protection: Step 2 developer tab restrict editing image" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-2-image.png 401w, https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-2-image-300x240.png 300w" sizes="(max-width: 401px) 100vw, 401px" /></p>
<h4>Setting up the Restrict Editing Settings</h4>
<p>There are some steps to go through on the right hand pane.</p>
<ol>
<li>Tick the box on Formatting Restrictions and then choose Settings. Deselect all and then Choose Normal (Indent)</li>
</ol>
<p><img decoding="async" width="442" height="359" class="wp-image-6299 aligncenter" src="https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-3-image-1.png" alt="Restrict editing step 1 choosing editing options" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-3-image-1.png 442w, https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-3-image-1-300x244.png 300w" sizes="(max-width: 442px) 100vw, 442px" /></p>
<ol start="2">
<li>Press Ok and Say No to the next message (we want to keep the Heading Styles although not to change them)</li>
</ol>
<p><img decoding="async" width="318" height="79" class="wp-image-6300 size-full aligncenter" src="https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-3-image-2.png" alt="Restrict editing step 2 clicking no to keep styles" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-3-image-2.png 318w, https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-3-image-2-300x75.png 300w" sizes="(max-width: 318px) 100vw, 318px" /></p>
<ol start="3">
<li>On Step 2 you will select the Normal parts of the document you want others to change (Use the control key for multiple selections)</li>
</ol>
<p><img decoding="async" width="1030" height="582" class="wp-image-6301 aligncenter" src="https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-3-image-3.png" alt="Restrict editing step 3 more settings options" srcset="https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-3-image-3.png 1030w, https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-3-image-3-300x170.png 300w, https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-3-image-3-1024x579.png 1024w, https://www.jplcomputer.co.uk/wp-content/uploads/2021/05/Step-3-image-3-768x434.png 768w" sizes="(max-width: 1030px) 100vw, 1030px" /></p>
<ol start="4">
<li>The last step is to enforce protection with a password.</li>
</ol>
<p>&nbsp;</p>
<p>So, the document is now protected around the Style areas of Headings 1 and 2 but not around the Normal style paragraphs!</p>
<p>For more details on Word documents and Styles visit our web site. Here you can look at the content of our <a href="https://www.jplcomputer.co.uk/intermediate-word-training-course/">Intermediate</a> and <a href="https://www.jplcomputer.co.uk/advanced-word-training-course/">Advanced</a> Word courses.</p>
<p>&nbsp;</p>
<p>The video below shows you how you can use these protection options to stop parts of your documents from being edited. You might have heard of this option before or this might be new to you!</p>
<p>Take a look below at the video to find out more and then try them out on your own computer!</p>
<p><iframe title="Word Document Protection" src="https://www.youtube.com/embed/_YbKsP5Mwwk?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>We hope you have enjoyed this hint and tip on Word document protection. Why not take a look at our previous video hint and tip on <a href="https://www.jplcomputer.co.uk/2021/05/12/word-shortcuts-part-1/">part 1 of Word Shortcuts</a>?</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2021/05/26/word-document-protection/">Word Document Protection &#8211; how to prevent editing in part of a document</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>XLOOKUP and Filter Functions &#8211; new to you in a 365 update!</title>
		<link>https://www.jplcomputer.co.uk/2020/11/04/xlookup-and-filter-functions/</link>
		
		<dc:creator><![CDATA[JPL]]></dc:creator>
		<pubDate>Wed, 04 Nov 2020 10:00:02 +0000</pubDate>
				<category><![CDATA[Excel Tips]]></category>
		<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Microsoft Office Courses Cambridgeshire]]></category>
		<guid isPermaLink="false">https://www.jplcomputer.co.uk/?p=5268</guid>

					<description><![CDATA[<p>XLOOKUP and Filter Functions in Excel – how can I use these newer functions in [&#8230;]</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2020/11/04/xlookup-and-filter-functions/">XLOOKUP and Filter Functions &#8211; new to you in a 365 update!</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="et_pb_module et_pb_text et_pb_text_0 et_pb_text_align_left et_pb_bg_layout_light">
<div class="et_pb_text_inner">
<h2>XLOOKUP and Filter Functions in Excel – how can I use these newer functions in my spreadsheets? Watch the video to learn more</h2>
</div>
</div>
<p><img decoding="async" class="wp-image-3895 size-full alignright" src="https://www.jplcomputer.co.uk/wp-content/uploads/2019/11/Excel-icon.jpg" alt="Dependent list data validation in Excel: Excel icon" />This week&#8217;s hint and tip is about XLOOKUP and Filter functions in Excel. This looks at these newer functions in Excel and how they can be used in spreadsheets. These aren&#8217;t covered in great detail in any of our courses so we decided to do a hint and tip on them. We are going to go through them now below.</p>
<p>&nbsp;</p>
<h4>XLOOKUP</h4>
<p>XLOOKUP is the long awaited new function in Excel that everyone has been talking about! This new function allows you to match a value against a column and then return a value or multiple values on the same row to the left or right of the matched column. It has taken the VLOOKUP and made it a little more flexible in what it can do. Take a look in the video below to learn more!</p>
<p>&nbsp;</p>
<h4>Filter Functions</h4>
<p>This FILTER function allows you to filter your data based on criteria you set but show the results separate to your raw data. This can be very useful as it allows you to still see all your data as it is, but also have your filtered results showing at the same time. Some examples of how this is done can be seen in the video below.</p>
<p>&nbsp;</p>
<h4>Newer functions added into Microsoft 365</h4>
<p>Both of these new functions are only available to those with Microsoft 365 subscriptions and with the latest update. If you are unable to find them in your spreadsheets, try checking if there is an update pending.</p>
<p>&nbsp;</p>
<p>The video below shows you how to use both of these functions in Excel. It goes through some explanation into them both and then also demonstrates how they work.</p>
<p>Take a look below at the video to find out more and then try it out on your own computer!</p>
<p><iframe title="XLOOKUP and Filter Functions in Excel" src="https://www.youtube.com/embed/nFE6zzY0_7c?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>We hope you have enjoyed this hint and tip on XLOOKUP and Filter functions in Excel. Why not take a look at our previous one on <a href="https://www.jplcomputer.co.uk/2020/10/28/ways-to-view-a-formula/">different ways you can view a formula in Excel</a>?</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2020/11/04/xlookup-and-filter-functions/">XLOOKUP and Filter Functions &#8211; new to you in a 365 update!</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>VBA Input message boxes in Excel &#8211; something to stretch your knowledge</title>
		<link>https://www.jplcomputer.co.uk/2020/08/19/vba-input-message-boxes/</link>
		
		<dc:creator><![CDATA[JPL]]></dc:creator>
		<pubDate>Wed, 19 Aug 2020 09:00:17 +0000</pubDate>
				<category><![CDATA[Excel Tips]]></category>
		<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Microsoft Office Courses Cambridgeshire]]></category>
		<guid isPermaLink="false">https://www.jplcomputer.co.uk/?p=5055</guid>

					<description><![CDATA[<p>VBA Input Message Boxes – how can I create them in my spreadsheets? ​This week&#8217;s [&#8230;]</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2020/08/19/vba-input-message-boxes/">VBA Input message boxes in Excel &#8211; something to stretch your knowledge</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="et_pb_module et_pb_text et_pb_text_0 et_pb_text_align_left et_pb_bg_layout_light">
<div class="et_pb_text_inner">
<h2>VBA Input Message Boxes – how can I create them in my spreadsheets?</h2>
</div>
</div>
<p>​<img decoding="async" class="wp-image-3895 size-full alignright" src="https://www.jplcomputer.co.uk/wp-content/uploads/2019/11/Excel-icon.jpg" alt="VBA input message boxes: Excel icon" />This week&#8217;s hint and tip is about VBA input message boxes in Excel. It looks at how to make an Excel worksheet more interactive by using a macro with input message boxes. <em>We also did an earlier video in a similar interactive way to this on option buttons in a group as a quiz see the <a href="https://www.youtube.com/watch?v=0MOdKixRk8U" target="_blank" rel="noopener">video here</a></em>. VBA is covered in both our <a href="https://www.jplcomputer.co.uk/master-class-excel-bronze-training-course/">Master Class Excel Bronze</a> and <a href="https://www.jplcomputer.co.uk/master-class-excel-silver-training-course/">Silver courses</a>. This specific example isn&#8217;t covered in either courses, so we created a hint and tip to show you. We are going to go through it now below.</p>
<p>&nbsp;</p>
<h4>What is VBA?</h4>
<p>VBA stands for <em>Visual Basic for Applications</em>. VBA is a programming language which lies behind Excel macros. Therefore, an Excel macro is a series of lines of VBA code which execute a series of rather tedious operations you would otherwise have to perform manually. VBA is also used in lots of other examples, however Excel macros is a common example that most have heard of before.</p>
<p>&nbsp;</p>
<h4>Looking at an example of input message boxes</h4>
<p>In the workbook found below called ‘copy of input boxes’ there is a macro button and a macro behind it called addemup. The video explains how the coding that has been done in VBA produces the end effect.</p>
<p>This Excel example may give you an idea for the use of Excel interactively in asking question and gathering answers stored in Excel cells. We cover the use of VBAS in our Master Class Silver course and see our website for details.</p>
<p>We hope you enjoy testing out the worksheet.</p>
<p>&nbsp;</p>
<h4>A video to demonstrate the use of input message boxes in Excel</h4>
<p>The video below shows you how to use a input message box through the use of VBA coding. We hope that you find the video useful and enjoy learning about it!</p>
<p>Take a look below at the video to find out more and then try it out on your own computer!</p>
<p><iframe title="VBA Input Message Boxes in Excel" src="https://www.youtube.com/embed/B1LbvbYWiN4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>If you would like a copy of the example spreadsheet shown in the video to try it out yourself, then please <a href="mailto:johnlegge@jplcomputer.co.uk">drop us an email</a>.</p>
<p>We hope you have enjoyed this hint and tip on VBA input message boxes in Excel. Why not take a look at our previous one on <a href="https://www.jplcomputer.co.uk/2020/08/12/text-wrapping-in-word/">using wrap text in Word</a>​?</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2020/08/19/vba-input-message-boxes/">VBA Input message boxes in Excel &#8211; something to stretch your knowledge</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Groups of option buttons in our fun quiz! Have a go and let us know!</title>
		<link>https://www.jplcomputer.co.uk/2020/07/08/groups-of-option-buttons-quiz/</link>
		
		<dc:creator><![CDATA[JPL]]></dc:creator>
		<pubDate>Wed, 08 Jul 2020 10:00:59 +0000</pubDate>
				<category><![CDATA[Excel Tips]]></category>
		<category><![CDATA[Hints and Tips]]></category>
		<category><![CDATA[Microsoft Office Courses Cambridgeshire]]></category>
		<guid isPermaLink="false">https://www.jplcomputer.co.uk/?p=4900</guid>

					<description><![CDATA[<p>Groups of option buttons in our little quiz! How many questions did you get right? [&#8230;]</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2020/07/08/groups-of-option-buttons-quiz/">Groups of option buttons in our fun quiz! Have a go and let us know!</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="et_pb_module et_pb_text et_pb_text_0 et_pb_text_align_left et_pb_bg_layout_light">
<div class="et_pb_text_inner">
<h2>Groups of option buttons in our little quiz! How many questions did you get right?</h2>
</div>
</div>
<p>​<img decoding="async" class="wp-image-3895 size-full alignright" src="https://www.jplcomputer.co.uk/wp-content/uploads/2019/11/Excel-icon.jpg" alt="Groups of option buttons: Excel icon" />This week&#8217;s hint and tip is slightly different, we are bringing you a Quiz! This quiz has been created using groups of option buttons and you can see how they are used in this post. Option buttons aren&#8217;t covered in our courses yet, but they may well be in the future. Meanwhile we wanted to create a fun post to let you know more about them.</p>
<p>&nbsp;</p>
<h4>Our quiz using groups of option buttons (scroll down for the quiz spreadsheet!)</h4>
<p>In the video below we make use of option buttons in a group. The worksheet is a quiz giving 3 questions with the total score being shown at the bottom of the sheet turning green if a person gets all 3 right.</p>
<p>We’ve hidden column B which in a cell for each question holds the correct option number per question. We’ve also hidden column E which has an IF statement to show “correct” or “incorrect” but you can see the formula behind cell C17 which counts the correct answers.</p>
<p>The 3 questions are all on topics covered in our 3 Excel courses Basic, Intermediate or Advanced.</p>
<p>We are using the IF function and COUNTIF function in this worksheet and have hidden redundant columns and rows and password protected the sheet.</p>
<p>It’s a good way of reviewing on line various topics on a virtual training course.</p>
<p>Have a go at the quiz by downloading the spreadsheet below the video and see if you get all 3 right; they’re not that tricky.</p>
<p>&nbsp;</p>
<h4>A video to demonstrate option buttons in the quiz</h4>
<p>The video below shows you how the quiz works and how you can tell if you get the answers correct. We hope that you find the video useful and enjoy learning about it!</p>
<p>Take a look below at the video to find out more and then try it out on your own computer!</p>
<p><iframe title="Groups of Option Buttons &#039;Quiz&#039;" src="https://www.youtube.com/embed/0MOdKixRk8U?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>Click <a href="https://www.jplcomputer.co.uk/wp-content/uploads/2020/07/Groups-of-Option-Buttons-Quiz-Spreadsheet-1.xlsx">here</a> to download the quiz spreadsheet shown in the video and then try it out yourself!</p>
<p>Feel free to send your comments or questions to us at <a href="mailto:johnlegge@jplcomputer.co.uk">johnlegge@jplcomputer.co.uk</a>. Alternatively, post a comment saying how many you got right first time.</p>
<p>We hope you have enjoyed this small quiz using groups of option buttons. Why not take a look at our previous hint and tip on <a href="https://www.jplcomputer.co.uk/2020/07/01/data-validation-in-excel/">Data Validation and its use in Excel</a>?</p>
<p>The post <a href="https://www.jplcomputer.co.uk/2020/07/08/groups-of-option-buttons-quiz/">Groups of option buttons in our fun quiz! Have a go and let us know!</a> appeared first on <a href="https://www.jplcomputer.co.uk">JPL IT Training Ltd</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
