- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Pipe-delimited files to Excel or Access
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2001 08:31 AM
05-29-2001 08:31 AM
can automate the process of importing a pipe-delimited file into an Excel or Access
database? TIA, Cathy Breslow
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2001 09:14 AM
05-29-2001 09:14 AM
Re: Pipe-delimited files to Excel or Access
If you know some perl. There is a perl module that can be used to write excel format:
http://search.cpan.org/search?mode=module&query=excel
will list the existing modules.
Hope this helps,
Rik.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2001 09:22 AM
05-29-2001 09:22 AM
Re: Pipe-delimited files to Excel or Access
Is this the same?
Cathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2001 09:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2001 09:30 AM
05-29-2001 09:30 AM
Re: Pipe-delimited files to Excel or Access
Here's how I've done it:
1) save file as .csv
2) enter the following command to mail it to your desktop:
uuencode filename.csv filename.csv | mailx -s "test file" your_email@your_domain.com
If using Microsoft Outlook, you should then receive an attachment that will open into excel automatically, you can then delimit based on |
- OR -
before mailing to yourself, change all pipes to , (which is what a csv file really is, comma delimited file). Then it will automatically size the fields based on where the , are placed. I realize you may not be able to do this because you have commas in your data.
Anyway - hope this helps.
C
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2001 09:52 AM
05-29-2001 09:52 AM
Re: Pipe-delimited files to Excel or Access
Many thanks,
Cathy