<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Cochran Consulting Blog</title>
	
	<link>http://www.cochran-consulting.net/blog</link>
	<description>Helping your business grow with technology</description>
	<pubDate>Mon, 11 May 2009 17:49:38 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CochranConsultingBlog" /><feedburner:info uri="cochranconsultingblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Using Excel to analyze Analytics data</title>
		<link>http://feedproxy.google.com/~r/CochranConsultingBlog/~3/mts5VfefSEo/</link>
		<comments>http://www.cochran-consulting.net/blog/2009/05/11/using-excel-to-analyze-analytics-data/#comments</comments>
		<pubDate>Mon, 11 May 2009 17:49:38 +0000</pubDate>
		<dc:creator>jessie</dc:creator>
		
		<category><![CDATA[MS Excel tips and tricks]]></category>

		<category><![CDATA[analytics referring sites]]></category>

		<category><![CDATA[excel spreadsheet tips]]></category>

		<category><![CDATA[google analytics and excel]]></category>

		<guid isPermaLink="false">http://www.cochran-consulting.net/blog/?p=49</guid>
		<description><![CDATA[Many of us rely on visualizations to understand and analyze data.  While there are many tools that assist in analyzing data, Google analytics is one of the better tools used to measure website perfomance and matrices.
Google analytics can be a bit overwhelming and some portions are downright alien to many users.
A client recently ask how [...]]]></description>
			<content:encoded><![CDATA[<p>Many of us rely on visualizations to understand and analyze data.  While there are many tools that assist in analyzing data, Google analytics is one of the better tools used to measure website perfomance and matrices.</p>
<p>Google analytics can be a bit overwhelming and some portions are downright alien to many users.</p>
<p>A client recently ask how they could use excel to anaylze some Google analytics data.</p>
<p><strong>The Problem:</strong></p>
<p>Download monthly Google analytics data, import the data into Excel and display a user friendly interface for a customer in less then 8 hours (due to budget and time restraints).</p>
<p><strong>The solution:</strong></p>
<p>We created an excel spreadsheet that the customer could use to import google analytics data in csv format.</p>
<p>The spreadsheet contained the following:</p>
<ul>
<li>1 worksheet for each month (Jan - Feb)</li>
<li>A worksheet to display graphs</li>
<li>A worksheet for the top 20 traffic sources as identified by analytics data to anaylze.</li>
</ul>
<p><strong>Note: </strong>Each of these could have been placed in their own spreadsheets to segregate the data further.  We opted instead to place them in the same spreadsheet and hide the worksheets the customer did not need to see.  In this case the 20 traffic sources were hidden.</p>
<p>Each month, the customer will download a csv file from their analytics account and import the data into the spreadsheet (this could easily be automated but again the project was time restrained).</p>
<p>Graphs were created which are automatically updated to reflect the new monthly data and the customer will have a visual representation of their traffic sources for tracking purposes.</p>
<p>The monthly worksheets are raw csv data imported from the file that Google analytics generates.  Nothing special here.</p>
<p>The Graphs are also fairly straight forward - Displaying the site counts for the selected 20 referring sites, graphs for the bounce rate etc.  Here is an example of one of the graphs:</p>
<p><a href="http://www.cochran-consulting.net/blog/wp-content/uploads/2009/05/analytics-spreadsheet-graph.jpg"><img class="alignnone size-full wp-image-50" title="gpogle-analytics-spreadsheet-graph" src="http://www.cochran-consulting.net/blog/wp-content/uploads/2009/05/analytics-spreadsheet-graph.jpg" alt="" width="414" height="110" /></a></p>
<p>The worksheets for the site counts however, involved the use of vlookup Excel function (we could have used a few other funtions, but vlookup was quick and easy).</p>
<p>The design of the site count sheets required the use of 1 label to identify the site to be counted.  Each row was labeled Jan-Feb in col A.</p>
<p>There are 10 columns of data in the csv file which can be analyzed as needed:</p>
<ul>
<li>Source/Medium</li>
<li>Visits</li>
<li>Pages/Visit</li>
<li>Avg. Time on Site</li>
<li>% New Visits</li>
<li>Bounce Rate</li>
<li>Visits</li>
<li>Goal1 Conversion Rate</li>
<li>Goal Conversion Rate</li>
<li>Per Visit Goal Value</li>
</ul>
<p>Each cel in the site count reflects the value from one of these data elements using the following function:</p>
<p>=VLOOKUP(<strong>string-to-find</strong>!$col$row,<strong>where-to-find-it</strong>!$col:$col,<strong>Column-to-return</strong>,FALSE)</p>
<p><strong>string-to-find!$col$row</strong> - Used to identify the name of the referring site in the current sheet.  <strong>Example</strong>:  If the referring site to count is Google and the name as it appears in the raw data is located in Col E, Row 1, then this entry would have the following value: Google!$E$1  which says look inthe sheet called Google at col E row ! for the string to look up. (Note: The &#8220;!&#8221; is required since we are using this formula to reference other worksheets in the same spreadsheet)</p>
<p><strong>where-to-find-it!$col$row</strong> - This is used to identify which monthly sheet we want to find the string identifying the referring site.  <strong>Example</strong>: If we have 12 sheets, labeled Jan - Dec for the raw data, this entry would have the following value for January: Jan!$A:$Z which says: Look in the sheet called &#8216;Jan&#8217; in the range of cells beginning at A and ending at Z.</p>
<p><strong>Column-to-return</strong> - This is the column number whose data is to be retrieved if the string is found.  In the example, we are bringing back the First Column or the searched column.  If we wanted to bring back the second columns data, we would change this value to 2.</p>
<p><strong>FALSE</strong> - This final element is telling the function whether to use a case sensitive search or not.  In our example we are not using a case sensitive search.</p>
<p>Here&#8217;s an example with some test data for Jan - May:</p>
<p><a href="http://www.cochran-consulting.net/blog/wp-content/uploads/2009/05/referring-site-worksheet.jpg"><img class="aligncenter size-full wp-image-51" title="referring-site-worksheet" src="http://www.cochran-consulting.net/blog/wp-content/uploads/2009/05/referring-site-worksheet.jpg" alt="" width="428" height="178" /></a></p>
<p>Overall, an easy spreadsheet for visualizing referring sites so the customer can compare their targeting site traffic.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cochran-consulting.net/blog/2009/05/11/using-excel-to-analyze-analytics-data/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cochran-consulting.net/blog/2009/05/11/using-excel-to-analyze-analytics-data/</feedburner:origLink></item>
		<item>
		<title>How to use Autofit (columns and rows) in Excel</title>
		<link>http://feedproxy.google.com/~r/CochranConsultingBlog/~3/F-W0OGkalaw/</link>
		<comments>http://www.cochran-consulting.net/blog/2009/05/08/how-to-use-autofit-columns-and-rows-in-excel/#comments</comments>
		<pubDate>Fri, 08 May 2009 12:31:35 +0000</pubDate>
		<dc:creator>jessie</dc:creator>
		
		<category><![CDATA[MS Excel tips and tricks]]></category>

		<category><![CDATA[Excel tips and tricks]]></category>

		<category><![CDATA[MS Excel Questions and Answers]]></category>

		<guid isPermaLink="false">http://www.cochran-consulting.net/blog/?p=45</guid>
		<description><![CDATA[Our latest question comes from a visitor taking an Excel Spreadsheet exam:

There are several ways to use 'Autofit':

]]></description>
			<content:encoded><![CDATA[<p>Periodically we get questions from customers and visitors regarding the use of various applications.</p>
<p><img class="alignleft size-medium wp-image-46" style="margin: 5px;" title="Excel tips and tricks" src="http://www.cochran-consulting.net/blog/wp-content/uploads/2009/05/excel-spreadsheet-sm-300x150.jpg" alt="Excel tips and tricks" width="300" height="150" /></p>
<p><strong>How to use Autofit to adjust Column widths&#8230;</strong></p>
<p>There are several ways to use &#8216;Autofit&#8217;:</p>
<p>I am going to assume VB Script or programming will not be used, so the following methods do not utilize programming techniques.</p>
<p><strong>To Autofit 1 column first method:</strong></p>
<p>Once you have written the text in the cell of a column that you want to Autofit:</p>
<ol>
<li>Move your mouse to the top of the spreadsheet where the column headings are (A through ZZ etc.).</li>
<li>Hover your mouse over the right side border line of the column you want to Autofit. Your cursor should change to a solid bar with a right and left arrow.</li>
<li>Double click the borderline while your cursor is displayed as the solid bar with the arrows.</li>
</ol>
<p>This will contract/expand the column to the min/max size of the text that has been entered.</p>
<p><strong>Note</strong>: Method 1 above WILL NOT work if you have report headings in columns. <strong>The reason is</strong>: Report Headings tend to be wider then the data entered into cell elements or may have more then 1 cell merged together to make a single cell.  Using method 1 will contract/expand the column to fit the Heading, not the data.</p>
<p>Therefore, if you have report headings, use method 2&#8230;</p>
<p><strong>To Autofit 1 column second method:</strong></p>
<p>Once you have written the text in the cell of a column that you want to Autofit:</p>
<ol>
<li>Select the cell (notice cell, not column) that contains the data you want to Autofit (note: if you have just entered data into cell, you have to press the enter key or move off the cell for the data to be accepted into the cell, then reselect the cell)</li>
<li>Move your mouse to top of the spreadsheet where the menu options are.</li>
<li>From the menu, Select-&gt;Format-&gt;Column-&gt;Autofit Selection</li>
</ol>
<p>This will contract/expand the column to the min/max size of the text that has been entered.</p>
<p>These methods will work to Autofit both columns and rows.  To Autofit a row, repeat the above steps and substitute &#8216;row&#8217; for &#8216;column&#8217;.</p>
<p>There are additional ways to accomplish this, however they involve programming using macros and VB script and were not part of this question.</p>
<p>Hope that helps.</p>
<p>If you have comments or questions regarding applications, <a title="MS Office questions and answers" href="http://www.cochran-consulting.net/contact.php" target="_self">contact us</a> and we will do our best to answer them promptly</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cochran-consulting.net/blog/2009/05/08/how-to-use-autofit-columns-and-rows-in-excel/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cochran-consulting.net/blog/2009/05/08/how-to-use-autofit-columns-and-rows-in-excel/</feedburner:origLink></item>
		<item>
		<title>Help for Facebook users - Group messages</title>
		<link>http://feedproxy.google.com/~r/CochranConsultingBlog/~3/4RZV18oCbIE/</link>
		<comments>http://www.cochran-consulting.net/blog/2009/04/02/help-for-facebook-users-group-messages/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 15:57:53 +0000</pubDate>
		<dc:creator>jessie</dc:creator>
		
		<category><![CDATA[Facebook tips]]></category>

		<category><![CDATA[Tech Tips]]></category>

		<guid isPermaLink="false">http://www.cochran-consulting.net/blog/?p=38</guid>
		<description><![CDATA[As the popularity of Facebook grows and the increased number of applications are utilized by more and more members, I noticed recently a significant lack of information on how to do a few things.
One issue that I see posted is how to send messages to a group of people at once.  I&#8217;ve seen this mostly [...]]]></description>
			<content:encoded><![CDATA[<p>As the popularity of Facebook grows and the increased number of applications are utilized by more and more members, I noticed recently a significant lack of information on how to do a few things.</p>
<p>One issue that I see posted is how to send messages to a group of people at once.  I&#8217;ve seen this mostly in some of the games that are being offered by Facebook third party vendors.</p>
<p>So, here is how you can organize your friends into lists and then send emails/messages to groups of friends:</p>
<ol>
<li>Go to your friends list at the top menu of FB.  On the left side you should see &#8220;Friends List&#8221; and a button &#8220;Make a New List&#8221;.</li>
<li>Click the button and enter a name for the list</li>
<li>Hit Enter to create the list</li>
<li>Next you will get a new screen &#8220;Add to list&#8221;.  Next to the entry field for adding a friend is a link &#8220;Select Multiple Friends&#8221; click the link and up comes your friends list.</li>
<li>Select the friends you want to add to the list by clicking each one, once (they will become highlighted/selected).</li>
<li>When you are done selecting your friends for the list, scroll to the bottom and click the &#8220;Save List&#8221; button.</li>
</ol>
<p>There, you&#8217;ve made a friends list on Facebook and can send group messages to hearts content.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cochran-consulting.net/blog/2009/04/02/help-for-facebook-users-group-messages/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cochran-consulting.net/blog/2009/04/02/help-for-facebook-users-group-messages/</feedburner:origLink></item>
		<item>
		<title>MS Publisher tips and shortcuts - by Cochran Consulting</title>
		<link>http://feedproxy.google.com/~r/CochranConsultingBlog/~3/5iBPHCDXjVU/</link>
		<comments>http://www.cochran-consulting.net/blog/2009/01/05/ms-publisher-tips-and-shortcuts-by-cochran-consulting/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 17:08:30 +0000</pubDate>
		<dc:creator>jessie</dc:creator>
		
		<category><![CDATA[Tech Tips]]></category>

		<category><![CDATA[ms publisher tips]]></category>

		<category><![CDATA[technical tips]]></category>

		<guid isPermaLink="false">http://www.cochran-consulting.net/blog/?p=31</guid>
		<description><![CDATA[Let&#8217;s continue with a few more keyboard short cuts.
This time we&#8217;ll add some MS Publisher keyboard short cuts.  Remember when executing short cuts, to press and hold CTRL, ALT and SHIFT keys before pressing a printable character key.

Ctrl B -  Bold text
Ctrl U - Underline
Ctrl I - Italic
Ctrl = - Superscript
Ctrl Shift = - Subscript
Ctrl [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s continue with a few more keyboard short cuts.</p>
<p>This time we&#8217;ll add some <strong>MS Publisher </strong>keyboard short cuts.  Remember when executing short cuts, to press and hold CTRL, ALT and SHIFT keys before pressing a printable character key.</p>
<ul>
<li><strong>Ctrl B</strong> -  Bold text</li>
<li><strong>Ctrl U </strong>- Underline</li>
<li><strong>Ctrl I</strong> - Italic</li>
<li><strong>Ctrl = </strong>- Superscript</li>
<li><strong>Ctrl Shift =</strong><strong> </strong>- Subscript</li>
<li><strong>Ctrl Shift K</strong> - Small caps</li>
<li><strong>Ctrl Spacebar</strong> - Will remove all style formats from the highlighted text</li>
<li><strong>Ctrl Shift f</strong> - Accesses the font menu. Use the arrow keys to select a font, and press the enter key to change the text to the selected font</li>
<li><strong>Ctrl Shift P</strong> - Accesses the font size menu.  Use the arrow keys to select a size, and press the enter key to enable the change</li>
<li><strong>Ctrl Shift &gt;</strong> - Will increase the font size by a half point</li>
<li><strong>Ctrl Shift &lt; - </strong>Will decrease the font size by a half point</li>
</ul>
<p>If you have any additions to these or other application keyboard shortcuts, feel free to post them.  As always, our blog is nofollow free and we welcome comments, questions and suggestions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cochran-consulting.net/blog/2009/01/05/ms-publisher-tips-and-shortcuts-by-cochran-consulting/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cochran-consulting.net/blog/2009/01/05/ms-publisher-tips-and-shortcuts-by-cochran-consulting/</feedburner:origLink></item>
		<item>
		<title>Website tips - Bookmarking</title>
		<link>http://feedproxy.google.com/~r/CochranConsultingBlog/~3/odeK8m7WT8w/</link>
		<comments>http://www.cochran-consulting.net/blog/2008/11/17/website-tips-bookmarking/#comments</comments>
		<pubDate>Mon, 17 Nov 2008 13:31:03 +0000</pubDate>
		<dc:creator>jessie</dc:creator>
		
		<category><![CDATA[Website Tips]]></category>

		<category><![CDATA[website consulting]]></category>

		<category><![CDATA[website marketing]]></category>

		<category><![CDATA[website seo]]></category>

		<guid isPermaLink="false">http://www.cochran-consulting.net/blog/?p=27</guid>
		<description><![CDATA[Bookmarking is a very important aspect of website availability to your visitors.
Giving your visitors a convenient method of adding your site and being able to quickly return to it, will provide several benefits:

Recognition - Your visitors will recognize and associate you as a technology aware agent.
Tracking - Most website statistic counters can track how many [...]]]></description>
			<content:encoded><![CDATA[<p>Bookmarking is a very important aspect of website availability to your visitors.</p>
<p>Giving your visitors a convenient method of adding your site and being able to quickly return to it, will provide several benefits:</p>
<ul>
<li>Recognition - Your visitors will recognize and associate you as a technology aware agent.</li>
<li>Tracking - Most website statistic counters can track how many times your site has been bookmarked</li>
<li>Ease of navigation - Giving your visitors a bookmark will allow them to easily navigate to your site. This can also be tracked by many statistic counters.So, how do you do it?There are several ways a visitor can bookmark a website as I&#8217;m sure you are aware. The most often used method in IE or FireFox is to &#8220;Add to Favorites/Bookmark&#8221;. Did you also know that holding down the Ctrl key and pressing &#8216;D&#8217; would also do this?But that really doesn&#8217;t help you to provide a method to your visitors. So, here is some code you can add to any webpage on your website:
<p>&lt;a href=&#8221;javascript:window.external.AddFavorite(&#8217;http://www.YOURWEBSITEURL.com&#8217;,'Favorites NAME OF YOUR WEBSITE 1&#8242;)&#8221;&gt;Bookmark &lt;/a&gt;&lt;strong&gt;NAME OF YOUR WEBSITE 2</p>
<p>Replace the YOURWEBSITEURL with the url for your website. Also replace the NAME OF YOUR WEBSITE 1 with text you want to be displayed in their favorites list and replace NAME OF YOUR WEBSITE 2 with what you want displayed on your website.</p>
<p>That&#8217;s it.</li>
</ul>
<p>Cochran Consulting - Tech tips</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cochran-consulting.net/blog/2008/11/17/website-tips-bookmarking/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cochran-consulting.net/blog/2008/11/17/website-tips-bookmarking/</feedburner:origLink></item>
		<item>
		<title>Website tips - ‘H’ tags</title>
		<link>http://feedproxy.google.com/~r/CochranConsultingBlog/~3/l2AiLI6CXJo/</link>
		<comments>http://www.cochran-consulting.net/blog/2008/11/08/website-tips-h-tags/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 13:01:28 +0000</pubDate>
		<dc:creator>jessie</dc:creator>
		
		<category><![CDATA[Website Tips]]></category>

		<category><![CDATA[technical tips]]></category>

		<category><![CDATA[website consulting]]></category>

		<category><![CDATA[website seo]]></category>

		<guid isPermaLink="false">http://www.cochran-consulting.net/blog/?p=25</guid>
		<description><![CDATA[When entering content into a website, it is imperative that content be organized, easily understandable and well displayed.
This is most often and easiest to accomplish using the H1, H2 etc. tags.
What are they?
&#8216;H&#8217; tags are used to promote and organize content. They are very helpful in content as they provide the user with text that [...]]]></description>
			<content:encoded><![CDATA[<p>When entering content into a website, it is imperative that content be organized, easily understandable and well displayed.</p>
<p>This is most often and easiest to accomplish using the H1, H2 etc. tags.</p>
<p>What are they?</p>
<p>&#8216;H&#8217; tags are used to promote and organize content. They are very helpful in content as they provide the user with text that stands out as title information for a webpage.</p>
<p>Think of &#8216;H&#8217; tags as a way to outline webpage content.</p>
<p>When to use:</p>
<ul>
<li>H1 tags are used as a Heading. Each webpage should have only 1 heading.</li>
<li>H2 tags are used as sub headings. A webpage may have more then 1 sub heading</li>
<li>H3 etc. tags are used as identifying headings. A webpage may have more then 1 identifying heading.</li>
</ul>
<p>Interesting to note is that while you should leave H1, H2 and H3 tags formatted as they have been designed, H4, H5 and H6 can be customized to provide different font style and sizes. This will add to the appearance of text custom formatted with these &#8216;H&#8217; Tags.</p>
<p>Providing properly formatted content by employing H tags will not only benefit your users but your website as well.</p>
<p>It will give it a clean, professional look and feel and your visitors will thank you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cochran-consulting.net/blog/2008/11/08/website-tips-h-tags/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cochran-consulting.net/blog/2008/11/08/website-tips-h-tags/</feedburner:origLink></item>
		<item>
		<title>Technical Coaching - Voice over IP</title>
		<link>http://feedproxy.google.com/~r/CochranConsultingBlog/~3/Ni7WrVZY9dc/</link>
		<comments>http://www.cochran-consulting.net/blog/2008/11/08/technical-coaching-voice-over-ip/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 12:58:51 +0000</pubDate>
		<dc:creator>jessie</dc:creator>
		
		<category><![CDATA[technical coaching]]></category>

		<category><![CDATA[Tech Tips]]></category>

		<category><![CDATA[Voice over IP]]></category>

		<category><![CDATA[website consulting]]></category>

		<category><![CDATA[website seo]]></category>

		<guid isPermaLink="false">http://www.cochran-consulting.net/blog/?p=23</guid>
		<description><![CDATA[Voice over IP stands for Voice over Internet Protocol or VoIP.
When people think of VoIP, they usually think of services like Vonage or their cable company.  In fact, these companies usually advertise their services as “Broadband Phone Service”.
While these companies do offer VoIP services, we will be discussing services much simpler than full-fledged telephone service.
VoIP [...]]]></description>
			<content:encoded><![CDATA[<p>Voice over IP stands for Voice over Internet Protocol or <strong>VoIP</strong>.</p>
<p>When people think of VoIP, they usually think of services like Vonage or their cable company.  In fact, these companies usually advertise their services as “Broadband Phone Service”.</p>
<p>While these companies do offer VoIP services, we will be discussing services much simpler than full-fledged telephone service.</p>
<p>VoIP cab easily accomplished without subscribing to a service and without a specialized telephone or other equipment. Basic VoIP can be accomplished by an internet connected PC which contains a soundcard that supports a headset or microphone and speakers.</p>
<p>There are several services available for consumers to utilize VoIP. Some are free or incur very small costs. One such service, Skype is available as a free download, and is one of the more popular applications in use.</p>
<p>Skype allows members to make free PC to PC calls regardless of distance and, for an extra fee, they can send/receive calls from standard telephones.</p>
<p>VoIP offers many benefits over traditional telephone services. These benefits, has this service positioned to become the phone system of the near future.</p>
<p>One of the main benefits of VoIP is its flexibility. You can take your phone, and your same phone number, with you anywhere in the world where a broadband internet connection is available.</p>
<p>Another benefit of VoIP is the price. In addition to offering local and long distance for lower rates, VoIP also bundles extra calling features that many have come to rely on ( caller ID, call waiting, three-way calling, etc).</p>
<p>In many cases, VoIP allows more advanced features not currently available with your typical land line. These services include: the ability to check voice mail via the web, voice messages sent as an attachment in an e-mail.</p>
<p>The some web interfaces also allow for detailed calling logs to be reviewed, customized messages applied to certain callers, as well as special call forwarding settings.</p>
<p>VoIP is not new, but as phone service prices rise and technology in general advances, the popularity of VoIP continues to gain momentum.</p>
<p>For additional information or to try Skype yourself, visit their website.</p>
<p>If you&#8217;d like to see Skype in use, several of our clients utilize this service in communication with our company:</p>
<p>Visit any of the following to see Skype in action:</p>
<p>Panama City Real Estate - Skype Id: panama.city.real.estate</p>
<p>Futureware Software Consulting - Skype Id: futurewarescg</p>
<p>Cochran Consulting - Skype Id: cochran.consulting</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cochran-consulting.net/blog/2008/11/08/technical-coaching-voice-over-ip/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cochran-consulting.net/blog/2008/11/08/technical-coaching-voice-over-ip/</feedburner:origLink></item>
		<item>
		<title>Tech tips - MS-Word templates</title>
		<link>http://feedproxy.google.com/~r/CochranConsultingBlog/~3/zz-iGD4lJAs/</link>
		<comments>http://www.cochran-consulting.net/blog/2008/11/03/tech-tips-ms-word-templates/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 15:05:15 +0000</pubDate>
		<dc:creator>jessie</dc:creator>
		
		<category><![CDATA[Tech Tips]]></category>

		<category><![CDATA[MS-Word Templates]]></category>

		<category><![CDATA[technical coaching]]></category>

		<category><![CDATA[technical tips]]></category>

		<guid isPermaLink="false">http://www.cochran-consulting.net/blog/?p=21</guid>
		<description><![CDATA[If you&#8217;re like us, you have several documents that are used all the time as a starting point or template if you will.
Did you know that you can save those documents as a MS-Word template?
That way when you want to use one of your documents as a starting point you can select it from the [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re like us, you have several documents that are used all the time as a starting point or template if you will.</p>
<p>Did you know that you can save those documents as a MS-Word template?</p>
<p>That way when you want to use one of your documents as a starting point you can select it from the &#8216;New from template&#8217; MS-Word menu!</p>
<p>How?   Simple&#8230;</p>
<ol>
<li>Open your document in word.</li>
<li>Select &#8216;File&#8217; &#8216;Save as&#8217;.  You will get the &#8216;Save As&#8217; window.</li>
<li>At the bottom of the window where you would type the name of the file is a menu that says &#8216;Save as type&#8217;. Open the drop down menu and select &#8216;Document Template&#8217;.</li>
<li>Name the file.</li>
</ol>
<p>Now when you want to start a file using your template, you can select it directly from within the MS-Word template dialog box on the &#8216;General&#8217; tab.</p>
<p>Cochran Consulting - Tech tips</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cochran-consulting.net/blog/2008/11/03/tech-tips-ms-word-templates/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cochran-consulting.net/blog/2008/11/03/tech-tips-ms-word-templates/</feedburner:origLink></item>
		<item>
		<title>Tech tips - Keyboard shortcuts</title>
		<link>http://feedproxy.google.com/~r/CochranConsultingBlog/~3/W996N2Qgy-s/</link>
		<comments>http://www.cochran-consulting.net/blog/2008/11/02/tech-tips-keyboard-shortcuts/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 23:22:25 +0000</pubDate>
		<dc:creator>jessie</dc:creator>
		
		<category><![CDATA[Tech Tips]]></category>

		<category><![CDATA[Keyboard shortcuts]]></category>

		<category><![CDATA[technical coaching]]></category>

		<category><![CDATA[technical tips]]></category>

		<guid isPermaLink="false">http://www.cochran-consulting.net/blog/?p=19</guid>
		<description><![CDATA[Here are quite a few keyboard shortcuts. They are specially useful to those of us that are &#8216;mouse challenged&#8217;  
Ctrl B, Ctrl I, or Ctrl U apply bold, italics, or underline to highlighted text, respectively.
Ctrl P prints whatever is in an active window.
Ctrl Backspace erases an entire word at a time, instead of a [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-top: 12px; margin-left: 5px">Here are quite a few keyboard shortcuts. They are specially useful to those of us that are &#8216;mouse challenged&#8217; <img src='http://www.cochran-consulting.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Ctrl B, Ctrl I, or Ctrl U</strong> apply bold, italics, or underline to highlighted text, respectively.</p>
<p><strong>Ctrl P</strong> prints whatever is in an active window.</p>
<p><strong>Ctrl Backspace</strong> erases an entire word at a time, instead of a letter. <strong>Ctrl up or down</strong> arrows let you scroll an entire paragraph at a time, instead of one line, and <strong>Ctrl Shift up</strong> or down arrow will select an entire paragraph.</p>
<p><strong>Ctrl Enter</strong> inserts a page break in Word.</p>
<p><strong>Alt Ctrl C</strong> inserts the copyright symbol (<strong>Alt Ctrl R</strong> inserts the registered trademark symbol, and <strong>Alt Ctrl T</strong> makes the trademark symbol).</p>
<p>In Outlook, you can jump to the section you want: <strong>Ctrl 1</strong> switches to the Mail window, <strong>Ctrl 2</strong> switches to the Calender, <strong>Ctrl 3</strong> to Contacts, <strong>Ctrl 4</strong> to Tasks, and <strong>Ctrl 5</strong> to Notes.</p>
<p><strong>Ctrl Shift M</strong> starts a new message in Outlook. (Use <strong>Ctrl Shift C</strong> for a new contact.)</p>
<p>In Outlook e-mail, hit <strong>Ctrl N</strong> to compose a new message, <strong>Ctrl R</strong> to reply to a message.</p>
<p>The only Excel shortcut I&#8217;ve ever known, Ctrl , enters the date. (If you live in Excel, you should have the Excel Keyboard Shortcuts page in your Favorites (<a rel="nofollow" href="http://office.microsoft.com/en-us/excel/HP052037811033.aspx)" target="in_body">http://office.microsoft.com/en-us/excel/HP052037811033.aspx)</a>!</p>
<p>Cochran Consulting - Tech tips</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cochran-consulting.net/blog/2008/11/02/tech-tips-keyboard-shortcuts/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cochran-consulting.net/blog/2008/11/02/tech-tips-keyboard-shortcuts/</feedburner:origLink></item>
		<item>
		<title>Tech tips - Help for all those ID’s and passwords!</title>
		<link>http://feedproxy.google.com/~r/CochranConsultingBlog/~3/kHQdI4qrzz4/</link>
		<comments>http://www.cochran-consulting.net/blog/2008/11/02/tech-tips-help-for-all-those-ids-and-passwords/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 23:20:13 +0000</pubDate>
		<dc:creator>jessie</dc:creator>
		
		<category><![CDATA[Tech Tips]]></category>

		<category><![CDATA[password software]]></category>

		<category><![CDATA[technical coaching]]></category>

		<category><![CDATA[technical tips]]></category>

		<guid isPermaLink="false">http://www.cochran-consulting.net/blog/?p=17</guid>
		<description><![CDATA[If you&#8217;re like us, you visit many websites and have several applications that require a user id and password.
It is quite a daunting task to keep track of all these id&#8217;s and passwords.
However, a company called FutureWare has an excellent product called KeyRing.
What key ring does, is allow you to store unlimited user id&#8217;s and [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-top: 12px; margin-left: 5px">If you&#8217;re like us, you visit many websites and have several applications that require a user id and password.</p>
<p>It is quite a daunting task to keep track of all these id&#8217;s and passwords.</p>
<p>However, a company called FutureWare has an excellent product called KeyRing.</p>
<p>What key ring does, is allow you to store unlimited user id&#8217;s and passwords for any and every application. It can even launch the application or website.</p>
<p>It&#8217;s very easy to use, easy to learn and best of all it&#8217;s reasonably priced.</p>
<p>You can find it here:<br />
<a href="http://www.futurewaredc.com/keyring/" target="in_body">http://www.futurewaredc.com/keyring/</a></p>
<p>You can even try it for free, with no oblication!</p>
<p>Cochran Consulting - Tech tips</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cochran-consulting.net/blog/2008/11/02/tech-tips-help-for-all-those-ids-and-passwords/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cochran-consulting.net/blog/2008/11/02/tech-tips-help-for-all-those-ids-and-passwords/</feedburner:origLink></item>
	</channel>
</rss>
