<?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>Daily Dose of Excel</title>
	<atom:link href="http://dailydoseofexcel.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dailydoseofexcel.com</link>
	<description>Haphazardly Posted Excel Information and Other Stuff</description>
	<lastBuildDate>Thu, 23 Mar 2023 20:41:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.9.10</generator>
	<item>
		<title>Navigating Outlook Favorites</title>
		<link>http://dailydoseofexcel.com/archives/2023/03/23/navigating-outlook-favorites/</link>
					<comments>http://dailydoseofexcel.com/archives/2023/03/23/navigating-outlook-favorites/#comments</comments>
		
		<dc:creator><![CDATA[Dick Kusleika]]></dc:creator>
		<pubDate>Thu, 23 Mar 2023 20:41:08 +0000</pubDate>
				<category><![CDATA[Outlook]]></category>
		<category><![CDATA[VBA]]></category>
		<guid isPermaLink="false">http://dailydoseofexcel.com/?p=15413</guid>

					<description><![CDATA[I have these four favorites defined in Outlook: From the inbox, I could hit Shift+F6 to get into the Favorites area but sometimes I would end up in no man&#8217;s land and couldn&#8217;t figure out how to get back into the inbox. So, god forbid, I had to use my mouse. I wrote this macro: [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I have these four favorites defined in Outlook:</p>
<p><a href="http://dailydoseofexcel.com/wp-content/uploads/2023/03/outlookfaborites.png"><img loading="lazy" src="http://dailydoseofexcel.com/wp-content/uploads/2023/03/outlookfaborites.png" alt="" width="240" height="216" /></a></p>
<p>From the inbox, I could hit Shift+F6 to get into the Favorites area but sometimes I would end up in no man&#8217;s land and couldn&#8217;t figure out how to get back into the inbox. So, god forbid, I had to use my mouse. I wrote this macro:</p>
<p></p><pre class="crayon-plain-tag">Sub NavigateFavorites()
    
    Dim ae As Explorer
    Dim oMod As MailModule
    Dim oGrp As NavigationGroup
    Dim oFldrs As NavigationFolders
    Dim i As Long
    
    Set ae = Application.ActiveExplorer
    Set oMod = ae.NavigationPane.Modules.GetNavigationModule(olModuleMail)
    Set oGrp = oMod.NavigationGroups.GetDefaultNavigationGroup(olFavoriteFoldersGroup)
    Set oFldrs = oGrp.NavigationFolders
    
    For i = 1 To oFldrs.Count
        If oFldrs(i).DisplayName = ae.CurrentFolder.Name Then
            If i = oFldrs.Count Then
                Set ae.CurrentFolder = oFldrs.Item(1).Folder
            Else
                Set ae.CurrentFolder = oFldrs.Item(i + 1).Folder
            End If
            Exit Sub
        End If
    Next i
    
End Sub</pre><p></p>
<p>And added it to the fourth position on my QAT. Now I can press Alt+4 to cycle through my favorites. And I&#8217;ve only hit Alt+F4 accidentally about a dozen times.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://dailydoseofexcel.com/archives/2023/03/23/navigating-outlook-favorites/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>AutoHotkey in VBA</title>
		<link>http://dailydoseofexcel.com/archives/2023/01/11/autohotkey-in-vba/</link>
					<comments>http://dailydoseofexcel.com/archives/2023/01/11/autohotkey-in-vba/#comments</comments>
		
		<dc:creator><![CDATA[Dick Kusleika]]></dc:creator>
		<pubDate>Wed, 11 Jan 2023 23:18:21 +0000</pubDate>
				<category><![CDATA[Keyboard]]></category>
		<category><![CDATA[VBA]]></category>
		<guid isPermaLink="false">http://dailydoseofexcel.com/?p=15402</guid>

					<description><![CDATA[In response to https://nolongerset.com/all-about-indenting/ [crayon-675420fac5f0a637747736/]]]></description>
										<content:encoded><![CDATA[<p>In response to https://nolongerset.com/all-about-indenting/</p>
<p></p><pre class="crayon-plain-tag">::ThisPath::ThisWorkbook.Path &amp; Application.PathSeparator

::ppg::Public Property Get

::with::With {End}{Enter}End With{up}{end}

:*:then`n::Then{Enter}{Enter}End If{up 1}`t

::forarray::For i = LBound(arr) to UBound(arr){Enter}{Enter}Next i{up}`t

:*:for ::
	;when you type for{space}, replace it with caps so you know you're in AHK mode
	SendInput FOR{Space}
	;wait for the next word and store it in counter
	Input, counter,I V T10,{Space}{Escape}
	;finish with ESC and you thwart AHK
	;but finish with a space and more stuff happens
	if (ErrorLevel = &quot;EndKey:Space&quot;)
		{
		;if the next word is each, it's a for each loop
		if (counter = &quot;each&quot;)
			{
			;wait for the next word and store it in eachctr
			Input, eachctr, I V T10,{Space}{Escape}
			if (ErrorLevel = &quot;EndKey:Space&quot;)
				{
				;Once you know eachctr, fill in the Next line and go back up to the For line
				SendInput +{HOME}{DELETE}{Enter}Next %eachctr%{Up}For Each %eachctr%{Space}
				}
			}
		;if the next word is one of these, you're opening a text file
		else if (counter = &quot;Append&quot; or counter = &quot;Binary&quot; or counter = &quot;Input&quot; or counter = &quot;Output&quot; or counter = &quot;Random&quot;)
			{
			;get the next word - it really should only be 'As'
			Input, askeyword, I V T10,{Space}{Escape}
			if (ErrorLevel = &quot;EndKey:Space&quot;)
				{
				if (askeyword = &quot;As&quot;)
					{
					;the word after 'As' is the file number
					Input, filenum, I V T10,{Enter}{Escape}
					if (ErrorLevel = &quot;EndKey:Enter&quot;)
						{
						;complete the close statement, because I always forget that.
						SendInput {Enter}Close{Space}
						;you got to send this part raw because there may be a # in there and that's special
						SendRaw %filenum%
						SendInput {Up}
						}
					}
				}
			}
		else
			{
			;and finally if it's not all that special stuff, it's just a for next
			SendInput +{HOME}{DELETE}{Enter}Next %counter%{Up}For %counter%{Space}
			}
		}
	else
		{
		;thwarted, so get rid of caps
		SendInput {bs 4}for{Space}
		}
	Return

:*:do`n::
    sendinput Do{Enter 2}Loop{Up}{Tab}{Down}{End}{Space}
	Return
 
 :*:do until ::
    sendinput DO UNTIL{Enter}Loop{Up}{End}{Space}
	Return
 
 :*:do while ::
    sendinput DO WHILE{Enter}Loop{Up}{End}{Space}
	Return	

:*:.eof::
	sendinput .EOF{Enter}{Enter}{Tab}.MoveNext{Up}{Tab}
	Return
	
:*:Input(::
	sendinput Input$(lof(lfile),lfile)
	Return

:*:Input$(::
	sendinput Input$(lof(lfile),lfile)
	Return</pre><p></p>
]]></content:encoded>
					
					<wfw:commentRss>http://dailydoseofexcel.com/archives/2023/01/11/autohotkey-in-vba/feed/</wfw:commentRss>
			<slash:comments>4</slash:comments>
		
		
			</item>
		<item>
		<title>Macros with 32-bit API Calls</title>
		<link>http://dailydoseofexcel.com/archives/2021/05/30/macros-with-32-bit-api-calls/</link>
					<comments>http://dailydoseofexcel.com/archives/2021/05/30/macros-with-32-bit-api-calls/#comments</comments>
		
		<dc:creator><![CDATA[Dick Kusleika]]></dc:creator>
		<pubDate>Sun, 30 May 2021 22:59:20 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://dailydoseofexcel.com/?p=15278</guid>

					<description><![CDATA[I have a fairly slow running macro (~20 seconds) that works fine on one computer, but never finishes on another. If finally decided to figure out why. (Big Daddy is the nickname of the guy who started this golf league way before my time. I am not Big Daddy, although maybe I should be.) First [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I have a fairly slow running macro (~20 seconds) that works fine on one computer, but never finishes on another. If finally decided to figure out why. (Big Daddy is the nickname of the guy who started this golf league way before my time. I am <strong>not</strong> Big Daddy, although maybe I should be.)</p>
<p>First I noted that Windows Defender was using a lot of CPU and Excel almost none.</p>
<p><img loading="lazy" src="/blogpix/macroapidefender.gif" height="593" width="666" alt="" /></p>
<p>I disabled Windows Defender realtime under Windows Security. Then I got a green leaf next to Excel that says &#8220;This UWP process is suspended to improve system performance.&#8221;</p>
<p><img loading="lazy" src="/blogpix/macroapigreenleaf.gif" height="593" width="666" alt="" /></p>
<p>I don&#8217;t know what that means, but the internet told me to increase the priority of Excel. </p>
<p><img loading="lazy" src="/blogpix/macroapihighpriority.gif" height="806" width="684" alt="" /></p>
<p>That got rid of the green leaf, but the macro never finished. I read some stuff about 32-bit APIs and Win 10 trying to prevent malicious code. I use the CopyMemory API referenced in Rob Bruce&#8217;s comment to <a href="/archives/2007/12/28/terminating-dependent-classes/">Terminating Dependent Classes</a></p>
<p>I rewrote all the dependencies to simply point to the other classes rather than use CopyMemory and all the problems vanished.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://dailydoseofexcel.com/archives/2021/05/30/macros-with-32-bit-api-calls/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Name Manager updated</title>
		<link>http://dailydoseofexcel.com/archives/2020/12/14/name-manager-updated-2/</link>
					<comments>http://dailydoseofexcel.com/archives/2020/12/14/name-manager-updated-2/#comments</comments>
		
		<dc:creator><![CDATA[jkpieterse]]></dc:creator>
		<pubDate>Mon, 14 Dec 2020 14:02:55 +0000</pubDate>
				<category><![CDATA[Add-ins]]></category>
		<category><![CDATA[Names]]></category>
		<guid isPermaLink="false">http://dailydoseofexcel.com/?p=15227</guid>

					<description><![CDATA[Do you use Range names in Excel? Today I have updated my 100% free Excel Name Manager add-in with two new features: &#8211; Edit the name&#8217;s comment &#8211; Filter Lambda names https://jkp-ads.com/officemarketplacenm-en.asp Here&#8217;s a screen-shot: Regards, Jan Karel Pieterse jkp-ads.com]]></description>
										<content:encoded><![CDATA[<p>Do you use Range names in <strong class="ql-hashtag">Excel</strong>? Today I have updated my 100% free <a href="https://jkp-ads.com/officemarketplacenm-en.asp">Excel Name Manager add-in</a> with two new features:</p>
<p>&#8211; Edit the name&#8217;s comment</p>
<p>&#8211; Filter Lambda names</p>
<p><a href="https://jkp-ads.com/officemarketplacenm-en.asp">https://jkp-ads.com/officemarketplacenm-en.asp</a></p>
<p>Here&#8217;s a screen-shot:</p>
<p><a href="http://dailydoseofexcel.com/wp-content/uploads/2020/12/NameManager.gif"><img loading="lazy" class="alignnone size-full wp-image-15231" src="http://dailydoseofexcel.com/wp-content/uploads/2020/12/NameManager.gif" alt="" width="870" height="873" /></a></p>
<p>Regards,</p>
<p>Jan Karel Pieterse</p>
<p><a href="https://jkp-ads.com/index.asp">jkp-ads.com</a></p>
]]></content:encoded>
					
					<wfw:commentRss>http://dailydoseofexcel.com/archives/2020/12/14/name-manager-updated-2/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>RefTreeAnalyser: Two updates</title>
		<link>http://dailydoseofexcel.com/archives/2020/12/04/reftreeanalyser-two-updates/</link>
					<comments>http://dailydoseofexcel.com/archives/2020/12/04/reftreeanalyser-two-updates/#respond</comments>
		
		<dc:creator><![CDATA[jkpieterse]]></dc:creator>
		<pubDate>Fri, 04 Dec 2020 15:51:32 +0000</pubDate>
				<category><![CDATA[Add-ins]]></category>
		<category><![CDATA[Formulas]]></category>
		<category><![CDATA[MVP]]></category>
		<category><![CDATA[VBA]]></category>
		<guid isPermaLink="false">http://dailydoseofexcel.com/?p=15223</guid>

					<description><![CDATA[Hi There, It&#8217;s been a while since I last posted here. Today I have released an update of my RefTreeAnalyser utility. The tool now allows you to add a Table Of Contents to your workbook which contains lists of all sheets, all charts and all Pivottables: In addition I have added a Feedback button to [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Hi There,</p>
<p>It&#8217;s been a while since I last posted here. Today I have released an update of my <a href="https://jkp-ads.com/reftreeanalyser.asp">RefTreeAnalyser</a> utility.</p>
<p>The tool now allows you to add a Table Of Contents to your workbook which contains lists of all sheets, all charts and all Pivottables:</p>
<p><a href="http://dailydoseofexcel.com/wp-content/uploads/2020/12/RTAToC.png"><img loading="lazy" class="alignnone size-full wp-image-15224" src="http://dailydoseofexcel.com/wp-content/uploads/2020/12/RTAToC.png" alt="" width="594" height="547" /></a></p>
<p>In addition I have added a Feedback button to enable my users to send their complaints -I mean compliments- directly to me! So as of now, if you have ideas for improvements or suggestions for additions or a bug to report, use that feedback button!</p>
<p>Be safe!</p>
<p>Jan Karel Pieterse</p>
]]></content:encoded>
					
					<wfw:commentRss>http://dailydoseofexcel.com/archives/2020/12/04/reftreeanalyser-two-updates/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Opening a File from a Userform Disables Ribbon</title>
		<link>http://dailydoseofexcel.com/archives/2020/09/09/opening-a-file-from-a-userform-disables-ribbon/</link>
					<comments>http://dailydoseofexcel.com/archives/2020/09/09/opening-a-file-from-a-userform-disables-ribbon/#comments</comments>
		
		<dc:creator><![CDATA[Dick Kusleika]]></dc:creator>
		<pubDate>Wed, 09 Sep 2020 20:32:26 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://dailydoseofexcel.com/?p=15188</guid>

					<description><![CDATA[In Excel 2019 16.0.10361.20002 32-bit, when I open a file from a userform (which for me is always), the hotkeys on the Ribbon don&#8217;t work. Here&#8217;s how I reproduce: In a new workbook, add a userform named UserForm1. Add a commandbutton to the userform. Paste this code in the userform&#8217;s code module. [crayon-675420fac63e8958656908/] Add a [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>In Excel 2019 16.0.10361.20002 32-bit, when I open a file from a userform (which for me is <a href="/archives/2013/08/06/recent-files-and-places-search/">always</a>), the hotkeys on the Ribbon don&#8217;t work. Here&#8217;s how I reproduce:</p>
<p>In a new workbook, add a userform named UserForm1. Add a commandbutton to the userform. Paste this code in the userform&#8217;s code module.</p>
<p></p><pre class="crayon-plain-tag">Private Sub CommandButton1_Click()
    
    Application.RecentFiles(1).Open
    
    Unload Me
    
End Sub</pre><p></p>
<p>Add a standard module to the workbook and past this code into it.</p>
<p></p><pre class="crayon-plain-tag">Public Sub OpenRecent()
    
    UserForm1.Show
    
End Sub</pre><p></p>
<p>Close the <abbr title="Visual Basic Editor">VBE</abbr> and return to Excel. Press Ctrl+F8 and run the macro and click the button. Now press the Alt key. I don&#8217;t get these guys:</p>
<p><img loading="lazy" src="/blogpix/NoRibbonHotkeys.gif" height="147" width="539" alt="" /></p>
<p>If I Alt+Tab away and back, they show up again. If you launch the form from the <abbr title="Visual Basic Editor">VBE</abbr>, you have to Alt+Tab to get to Excel so the test doesn&#8217;t work.</p>
<p>Also, I hadn&#8217;t tried this until just now, but I can&#8217;t even click on the Ribbon with mouse. Nothing happens. My next tack is to close and unload the userform before opening the file and see if that takes care of it. It&#8217;s odd though. It&#8217;s the only odd thing in 2019 and building up a pretty nice rant about it. Two posts in one year? Yep, it could happen.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://dailydoseofexcel.com/archives/2020/09/09/opening-a-file-from-a-userform-disables-ribbon/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Excel Virtually Global</title>
		<link>http://dailydoseofexcel.com/archives/2020/07/17/excel-virtually-global/</link>
					<comments>http://dailydoseofexcel.com/archives/2020/07/17/excel-virtually-global/#respond</comments>
		
		<dc:creator><![CDATA[Charles Williams]]></dc:creator>
		<pubDate>Fri, 17 Jul 2020 12:35:25 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://dailydoseofexcel.com/?p=15167</guid>

					<description><![CDATA[https://excelvirtuallyglobal.com/ Tue 21 July to Thu 23 July 2020 Microsoft’s Most Valuable Professionals, or MVPs, are technology experts who passionately share their knowledge with the community.  They are always on the “bleeding edge” and have an unstoppable urge to get their hands on new, exciting technologies. This virtual conference, now in its fifth year, presents [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a href="https://excelvirtuallyglobal.com/" >https://excelvirtuallyglobal.com/</a></p>
<p>Tue 21 July to Thu 23 July 2020</p>
<p>Microsoft’s Most Valuable Professionals, or MVPs, are technology experts<br />
who passionately share their knowledge with the community.  They are<br />
always on the “bleeding edge” and have an unstoppable urge to get their<br />
hands on new, exciting technologies. This virtual conference, now in its<br />
fifth year, presents Excel, Data Platform and PowerPoint MVPs, together<br />
with other acknowledged experts from Microsoft and / or around the globe<br />
to present, answer questions and demonstrate the future of Excel and how<br />
it will make your life easier, personally and professionally.<br />
Topics include: Auditing Spreadsheets, Charts, Dashboards, Data<br />
Analysis, Data Types, Dynamic Arrays, Excel Tricks &amp; Tips, Financial<br />
Modelling, Forecasting, Maps, Microsoft 365, New Functions and Features,<br />
PivotTables, Power BI, Power Pivot, Power Query, Presenting Your Data,<br />
Spilled Formulae, Testing, Timelines and developing solutions with DNA<br />
.Net, VBA, Python, R, OfficeScript and Office-JS.  And note well – it’s<br />
not all in English, with sessions in Mandarin, Portuguese, Spanish and<br />
Telugu, as well.</p>
<p>Most sessions will be recorded so you may watch them later with<br />
downloads aplenty – there are no medals for staying up to watch the<br />
entire event live!</p>
<p> From your own favourite chair, bring a laptop, an inquisitive mind and<br />
your sense of humour.  Be prepared to learn heaps.  And remember, it’s<br />
for charity – all profits will be donated to a global COVID-19 research<br />
charity.</p>
<p>Price only US$23 Tickets at<br />
<a href="https://www.eventbrite.com/e/excel-virtually-global-a-virtual-excel-summit-tickets-106319837496">https://www.eventbrite.com/e/excel-virtually-global-a-virtual-excel-summit-tickets-106319837496</a><br />
(or just click ‘Register’ on the first site)</p>
]]></content:encoded>
					
					<wfw:commentRss>http://dailydoseofexcel.com/archives/2020/07/17/excel-virtually-global/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Excel VBA Masterclass</title>
		<link>http://dailydoseofexcel.com/archives/2020/04/27/excel-vba-masterclass/</link>
					<comments>http://dailydoseofexcel.com/archives/2020/04/27/excel-vba-masterclass/#respond</comments>
		
		<dc:creator><![CDATA[jkpieterse]]></dc:creator>
		<pubDate>Mon, 27 Apr 2020 09:48:35 +0000</pubDate>
				<category><![CDATA[Add-ins]]></category>
		<category><![CDATA[Arrays]]></category>
		<category><![CDATA[Classes]]></category>
		<category><![CDATA[Collections]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[Excel Advanced]]></category>
		<category><![CDATA[MVP]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[UI Design]]></category>
		<category><![CDATA[User Defined Functions]]></category>
		<category><![CDATA[Userforms and Controls]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[VBA Advanced]]></category>
		<guid isPermaLink="false">http://dailydoseofexcel.com/?p=15104</guid>

					<description><![CDATA[Hi there. Hope you and yours are well in these difficult times! This is just a very short announcement that I&#8217;ll be doing an on-line version of my Excel VBA Masterclass. The training is scheduled for May 18, 20, 26, 28, June 2, 4 and I&#8217;ll be using Microsoft Teams to deliver it to your [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Hi there. Hope you and yours are well in these difficult times!</p>
<p>This is just a very short announcement that I&#8217;ll be doing an on-line version of my <a href="https://topexcelclass.com/index.php/excel-vba-masterclass/" target="_blank" rel="noopener noreferrer">Excel VBA Masterclass.</a></p>
<p>The training is scheduled for May 18, 20, 26, 28, June 2, 4 and I&#8217;ll be using Microsoft Teams to deliver it to your homes!</p>
<p><a href="https://topexcelclass.com/index.php/excel-vba-masterclass/vba-masterclass-registration/" target="_blank" rel="noopener noreferrer">Register now!</a></p>
<p>Regards,</p>
<p>Jan Karel Pieterse</p>
]]></content:encoded>
					
					<wfw:commentRss>http://dailydoseofexcel.com/archives/2020/04/27/excel-vba-masterclass/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>International Keyboard Shortcut Day 2019</title>
		<link>http://dailydoseofexcel.com/archives/2019/11/04/international-keyboard-shortcut-day-2019/</link>
					<comments>http://dailydoseofexcel.com/archives/2019/11/04/international-keyboard-shortcut-day-2019/#comments</comments>
		
		<dc:creator><![CDATA[Dick Kusleika]]></dc:creator>
		<pubDate>Mon, 04 Nov 2019 14:12:45 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[keyboard shortcut]]></category>
		<guid isPermaLink="false">http://dailydoseofexcel.com/?p=15015</guid>

					<description><![CDATA[The first Wednesday of every November is International Keyboard Shortcut Day. This Wednesday, people from all over the world will become far less efficient for a short time in an effort to be far more efficient the rest of the year. &#8220;WASD V2 88-Key ISO Custom&#8221; by Bitboxer is licensed under CC BY-NC-SA 2.0 This [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>The first Wednesday of every November is International Keyboard Shortcut Day. This Wednesday, people from all over the world will become far less efficient for a short time in an effort to be far more efficient the rest of the year.</p>
<p style="font-size: 0.9rem;font-style: italic;"><img style="display: block;" src="https://farm8.staticflickr.com/7364/16535910292_1f71e19b0d_b.jpg" alt="WASD V2 88-Key ISO Custom"><a href="https://www.flickr.com/photos/20371069@N00/16535910292">&#8220;WASD V2 88-Key ISO Custom&#8221;</a><span> by <a href="https://www.flickr.com/photos/20371069@N00">Bitboxer</a></span> is licensed under <a href="https://creativecommons.org/licenses/by-nc-sa/2.0/?ref=ccsearch&#038;atype=html" style="margin-right: 5px;">CC BY-NC-SA 2.0</a><a href="https://creativecommons.org/licenses/by-nc-sa/2.0/?ref=ccsearch&#038;atype=html" target="_blank" rel="noopener noreferrer" style="display: inline-block;white-space: none;margin-top: 2px;margin-left: 3px;height: 22px !important;"><img style="height: inherit;margin-right: 3px;display: inline-block;" src="https://search.creativecommons.org/static/img/cc_icon.svg" /><img style="height: inherit;margin-right: 3px;display: inline-block;" src="https://search.creativecommons.org/static/img/cc-by_icon.svg" /><img style="height: inherit;margin-right: 3px;display: inline-block;" src="https://search.creativecommons.org/static/img/cc-nc_icon.svg" /><img style="height: inherit;margin-right: 3px;display: inline-block;" src="https://search.creativecommons.org/static/img/cc-sa_icon.svg" /></a></p>
<p>This year I&#8217;ll be starting all of my programs with the keyboard. First, I&#8217;m going to hide the Cortana search bar because that&#8217;s just a waste of real estate. Ironically, the best way to do this is with your mouse. Right-click on the taskbar, choose Cortana, and Hidden.</p>
<p><img loading="lazy" src="/blogpix/iksd_hidecortana.gif" height="479" width="689" alt="" /></p>
<p>Now let&#8217;s pin some frequently used applications to the taskbar. Start the application however you normally would. Find the icon in your taskbar, right-click on it, and choose Pin to Taskbar.</p>
<p><img loading="lazy" src="/blogpix/iksd_pintotaskbar.gif" height="471" width="430" alt="" /></p>
<p>I have eight applications pinned to my taskbar. I can open these using the Windows key and the number representing that applications position in the taskbar. For me Outlook is first, so I would use Windows+1 to open Outlook.</p>
<p><img loading="lazy" src="/blogpix/iksd_winplus.gif" height="169" width="611" alt="" /></p>
<p>Every morning, I unlock my computer, hold down the Windows key, and press 2, 3, 5, and 7. This opens all the programs that I leave running all day. I never close Outlook because of all the client side rules I have, but I include Win+1 to that process after a reboot. I used to open #4 every day, but that&#8217;s fallen out of favor. But I don&#8217;t want to remove it and change the positions or all the other icons.</p>
<p>In addition to opening the program, Win+number switches to that application if it&#8217;s already running. If that application already has the focus, it gets moved to the back of the line and hidden. Just press the shortcut again to bring it back to the front. If you have multiple instances running, like multiple Word docs or Excel files, continue holding down the Windows key and pressing the number to cycle through all the documents. When the one you want is at the front, release the Win key.</p>
<p>One more thing about the taskbar: let&#8217;s say you have a bunch of File Explorer windows open, which you no doubt opened using Win+E. To close them all at once, press Win+Alt+number to get a context menu and choose Close All Windows. I don&#8217;t have File Explorer pinned to my taskbar, so its position in the list isn&#8217;t the same every time. But it&#8217;s usually ninth or tenth. In this example, it&#8217;s tenth so I use Win+Alt+0 to bring up the context menu.</p>
<p><img loading="lazy" src="/blogpix/iksd_context.gif" height="621" width="519" alt="" /></p>
<p>You might have also noticed that you could have used the Win+Alt context menu to pin the application to the taskbar instead of right clicking. If you did, you get an IKSD bonus.</p>
<p>OK, last tip before you&#8217;re on your way to a great keyboarding day. If you want to open a program that&#8217;s not pinned to the task bar, press and release the windows key and start typing the application&#8217;s name. For instance, if I want to open Powerpoint, I press and release Win and type <code>power</code>.</p>
<p><img loading="lazy" src="/blogpix/iksd_nonpinned.gif" height="701" width="509" alt="" /></p>
<p>Windows shows you everything that has power in the name or description. The &#8220;best match&#8221; is usually what I&#8217;m looking for, but you can see that you can also get to PowerShell or the power settings control panel using this method. If you have some recently used documents, those will also appear. When I type <code>ues</code> to open Ultra Edit Studio, it shows me a few documents I used recently.</p>
<p><img loading="lazy" src="/blogpix/iksd_ues.gif" height="719" width="434" alt="" /></p>
<p>I hope you use these techniques on Wednesday to open your applications using your keyboard and become a little more productive. Happy keyboarding.</p>
]]></content:encoded>
					
					<wfw:commentRss>http://dailydoseofexcel.com/archives/2019/11/04/international-keyboard-shortcut-day-2019/feed/</wfw:commentRss>
			<slash:comments>6</slash:comments>
		
		
			</item>
		<item>
		<title>Combinations, Combinations. And the winner is&#8230;</title>
		<link>http://dailydoseofexcel.com/archives/2019/09/19/combinations-combinations-and-the-winner-is/</link>
					<comments>http://dailydoseofexcel.com/archives/2019/09/19/combinations-combinations-and-the-winner-is/#comments</comments>
		
		<dc:creator><![CDATA[jkpieterse]]></dc:creator>
		<pubDate>Thu, 19 Sep 2019 13:05:46 +0000</pubDate>
				<category><![CDATA[Excel Intermediate]]></category>
		<category><![CDATA[Formulas]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[MVP]]></category>
		<category><![CDATA[VBA]]></category>
		<guid isPermaLink="false">http://dailydoseofexcel.com/?p=15001</guid>

					<description><![CDATA[It&#8217;s been a great competition and now it is time to announce the winners. Check out my new Excel challenges page to find out which solutions I received and who won the prize for best solution! I hope you enjoyed this challenge. If you have more ideas for challenges, let me know! Regards, Jan Karel [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>It&#8217;s been a <a href="http://dailydoseofexcel.com/archives/2019/08/06/combinations-combinations-a-challenge/" target="_blank" rel="noopener noreferrer">great competition</a> and now it is time to announce the winners.</p>
<p>Check out my new <a href="https://jkp-ads.com/articles/excelchallenge.asp">Excel challenges page</a> to find out which solutions I received and who won the prize for best solution!</p>
<p>I hope you enjoyed this challenge. If you have more ideas for challenges, let me know!</p>
<p>Regards,</p>
<p><a href="https://jkp-ads.com">Jan Karel Pieterse</a></p>
]]></content:encoded>
					
					<wfw:commentRss>http://dailydoseofexcel.com/archives/2019/09/19/combinations-combinations-and-the-winner-is/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
