<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Excel Templates Demystified</title>
	<atom:link href="http://peltiertech.com/WordPress/excel-templates-demystified/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/excel-templates-demystified/</link>
	<description>PTS Excel Charts and Tutorials Blog</description>
	<lastBuildDate>Sat, 21 Nov 2009 04:01:08 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/excel-templates-demystified/comment-page-1/#comment-16008</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Wed, 08 Jul 2009 01:03:31 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1115#comment-16008</guid>
		<description>CSV files just open into flat worksheets. What you do is copy the contents of the CSV file and paste it into the template. If this is not appropriate, a little code can always be used to extract the CSV data, split it, and dump it into the template.</description>
		<content:encoded><![CDATA[<p>CSV files just open into flat worksheets. What you do is copy the contents of the CSV file and paste it into the template. If this is not appropriate, a little code can always be used to extract the CSV data, split it, and dump it into the template.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Shilling</title>
		<link>http://peltiertech.com/WordPress/excel-templates-demystified/comment-page-1/#comment-16007</link>
		<dc:creator>Eric Shilling</dc:creator>
		<pubDate>Wed, 08 Jul 2009 00:55:20 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1115#comment-16007</guid>
		<description>Thanks Jon, 
Yes, the Text to Columns function does the job but I don&#039;t know any way to capture or save that specific setup. I&#039;d rather not have to define the column structure to the wizard each time I import a new .csv file.
I think I&#039;ve made a template with text functions that pick up my substrings in each of the right columns. [Saved it into &#039;My Templates&#039;].
I&#039;ll try it, but now I can&#039;t grasp how to open the .csv file into the new template. It keeps being opened into the normal Excel template and that kills one of the strings into scientific notation. (The file has several long strings, separated by commas; some are all digits.) I keep thinking it&#039;s going to be intuitive from here on. 
Thanks again, 
Eric</description>
		<content:encoded><![CDATA[<p>Thanks Jon,<br />
Yes, the Text to Columns function does the job but I don&#8217;t know any way to capture or save that specific setup. I&#8217;d rather not have to define the column structure to the wizard each time I import a new .csv file.<br />
I think I&#8217;ve made a template with text functions that pick up my substrings in each of the right columns. [Saved it into 'My Templates'].<br />
I&#8217;ll try it, but now I can&#8217;t grasp how to open the .csv file into the new template. It keeps being opened into the normal Excel template and that kills one of the strings into scientific notation. (The file has several long strings, separated by commas; some are all digits.) I keep thinking it&#8217;s going to be intuitive from here on.<br />
Thanks again,<br />
Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/excel-templates-demystified/comment-page-1/#comment-16002</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Tue, 07 Jul 2009 23:00:10 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1115#comment-16002</guid>
		<description>Eric -

This is part of the Text to Columns functionality on Excel&#039;s Data menu. However, if you are splitting into fields based just on the number of characters, Text to Columns may not be the easiest way to handle this task. If you always have the same number of characters in each column, you could simply use formulas to do the splitting. For example, put a string into cell A1.

To get the first five characters from A1 into B1, put this formula into B1:

=LEFT(A1,5)

To get the next three characters into C1:

=MID(A1,6,3)

where 6 is the starting character.

And so forth.</description>
		<content:encoded><![CDATA[<p>Eric -</p>
<p>This is part of the Text to Columns functionality on Excel&#8217;s Data menu. However, if you are splitting into fields based just on the number of characters, Text to Columns may not be the easiest way to handle this task. If you always have the same number of characters in each column, you could simply use formulas to do the splitting. For example, put a string into cell A1.</p>
<p>To get the first five characters from A1 into B1, put this formula into B1:</p>
<p>=LEFT(A1,5)</p>
<p>To get the next three characters into C1:</p>
<p>=MID(A1,6,3)</p>
<p>where 6 is the starting character.</p>
<p>And so forth.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Shilling</title>
		<link>http://peltiertech.com/WordPress/excel-templates-demystified/comment-page-1/#comment-16001</link>
		<dc:creator>Eric Shilling</dc:creator>
		<pubDate>Tue, 07 Jul 2009 22:41:16 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1115#comment-16001</guid>
		<description>Got here searching for Excel help on the web. Haven&#039;t used templates before, but I made one that shows my data the way I want it. Now I want to load my next raw data file into the template.
I was hoping my template would break up the text strings into the columns defined in my template, but I guess that was a little optomistic. 
Is there a way to parse a few 20 character strings in a .csv file into a bunch of shorter strings in separarate Excel columns? 
I guess I am trying to avoid having to define the field widths in the text import wizard every time I import a file. 
Anyway, this &#039;breaking up of strings into fields&#039; is a part of templates that I haven&#039;t seen much discussed. 
Eric</description>
		<content:encoded><![CDATA[<p>Got here searching for Excel help on the web. Haven&#8217;t used templates before, but I made one that shows my data the way I want it. Now I want to load my next raw data file into the template.<br />
I was hoping my template would break up the text strings into the columns defined in my template, but I guess that was a little optomistic.<br />
Is there a way to parse a few 20 character strings in a .csv file into a bunch of shorter strings in separarate Excel columns?<br />
I guess I am trying to avoid having to define the field widths in the text import wizard every time I import a file.<br />
Anyway, this &#8216;breaking up of strings into fields&#8217; is a part of templates that I haven&#8217;t seen much discussed.<br />
Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sam</title>
		<link>http://peltiertech.com/WordPress/excel-templates-demystified/comment-page-1/#comment-6552</link>
		<dc:creator>sam</dc:creator>
		<pubDate>Fri, 05 Dec 2008 12:11:37 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1115#comment-6552</guid>
		<description>Templates are also a way for creating Data entry forms that can be used to update central databases...(Purchase orders, Sales Orders, Time sheets ect)
In the good old days of Excel 2000 there used to be a built in Addin called Template Wizard with Data tracking.....Instead of developing it further MS decided to remove it from XP onwards. (Its still available as a separate download)</description>
		<content:encoded><![CDATA[<p>Templates are also a way for creating Data entry forms that can be used to update central databases&#8230;(Purchase orders, Sales Orders, Time sheets ect)<br />
In the good old days of Excel 2000 there used to be a built in Addin called Template Wizard with Data tracking&#8230;..Instead of developing it further MS decided to remove it from XP onwards. (Its still available as a separate download)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://peltiertech.com/WordPress/excel-templates-demystified/comment-page-1/#comment-6488</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Wed, 03 Dec 2008 12:53:33 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1115#comment-6488</guid>
		<description>Templates are curiously underused in Excel. I&#039;m not sure why.

I&#039;ve lost count of the number of times people have asked me how to copy sheets and VBA from their application workbook &quot;in order to create a new, blank one based on it&quot;. A template is the ideal solution on these occasions, but it seems rarely to be considered, maybe because creating a new workbook via a ton of VBA code is somehow more satisfying.</description>
		<content:encoded><![CDATA[<p>Templates are curiously underused in Excel. I&#8217;m not sure why.</p>
<p>I&#8217;ve lost count of the number of times people have asked me how to copy sheets and VBA from their application workbook &#8220;in order to create a new, blank one based on it&#8221;. A template is the ideal solution on these occasions, but it seems rarely to be considered, maybe because creating a new workbook via a ton of VBA code is somehow more satisfying.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
