Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default eXcel 2000 export CSV with images

I have an eXcel spreadsheet (2000 ver) that has imbedded images in one column
of the cells. I want to export the worksheet to a CSV file. (It is like a
product catalogue with each row containing an image of the product, along
with name, description, price, etc)

Everything works fine when I save as CSV for Windows, except the column with
the images is empty for all rows. I would like for it to contain the file
name of the image.

Is there any way to create a CSV file to include the images' filenames?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6,582
Default eXcel 2000 export CSV with images

CSV is a text file format. Comma Separated Values. No images.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"SunnyOz" wrote in message
...
I have an eXcel spreadsheet (2000 ver) that has imbedded images in one
column
of the cells. I want to export the worksheet to a CSV file. (It is like
a
product catalogue with each row containing an image of the product, along
with name, description, price, etc)

Everything works fine when I save as CSV for Windows, except the column
with
the images is empty for all rows. I would like for it to contain the file
name of the image.

Is there any way to create a CSV file to include the images' filenames?



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default eXcel 2000 export CSV with images

Thanks for replying.

Yes, I know CSV is in a text file format, but I was hoping to get just the
reference name. When I click on the image in excel, the window that normal
shows what row/cell you are referencing, it displays "Picture 411", which I
assume is Excel's internal reference for that picture (There is a different
number for each picture). This is what I would like to get exported to the
CSV file if possible.

Any suggestions?


"Jon Peltier" wrote:

CSV is a text file format. Comma Separated Values. No images.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"SunnyOz" wrote in message
...
I have an eXcel spreadsheet (2000 ver) that has imbedded images in one
column
of the cells. I want to export the worksheet to a CSV file. (It is like
a
product catalogue with each row containing an image of the product, along
with name, description, price, etc)

Everything works fine when I save as CSV for Windows, except the column
with
the images is empty for all rows. I would like for it to contain the file
name of the image.

Is there any way to create a CSV file to include the images' filenames?




  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 611
Default eXcel 2000 export CSV with images

Oz,

In a word, no. CSV gives data only. No formatting, margins, formulas,
links, etc. If you open a CSV with Notepad, you'll see every character in
the file (except the end-of-line characters). There simply ain't nothing
else.
--
Earl Kiosterud
www.smokeylake.com
-----------------------------------------------------------------------
"SunnyOz" wrote in message
...
Thanks for replying.

Yes, I know CSV is in a text file format, but I was hoping to get just the
reference name. When I click on the image in excel, the window that
normal
shows what row/cell you are referencing, it displays "Picture 411", which
I
assume is Excel's internal reference for that picture (There is a
different
number for each picture). This is what I would like to get exported to
the
CSV file if possible.

Any suggestions?


"Jon Peltier" wrote:

CSV is a text file format. Comma Separated Values. No images.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"SunnyOz" wrote in message
...
I have an eXcel spreadsheet (2000 ver) that has imbedded images in one
column
of the cells. I want to export the worksheet to a CSV file. (It is
like
a
product catalogue with each row containing an image of the product,
along
with name, description, price, etc)

Everything works fine when I save as CSV for Windows, except the column
with
the images is empty for all rows. I would like for it to contain the
file
name of the image.

Is there any way to create a CSV file to include the images' filenames?






  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6,582
Default eXcel 2000 export CSV with images

It's certainly possible to write a custom VBA procedure for generating your
own files, but you'd have to figure out how to represent the information,
and you'd have to realize that it would no longer be a valid CSV file.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"Earl Kiosterud" wrote in message
...
Oz,

In a word, no. CSV gives data only. No formatting, margins, formulas,
links, etc. If you open a CSV with Notepad, you'll see every character in
the file (except the end-of-line characters). There simply ain't nothing
else.
--
Earl Kiosterud
www.smokeylake.com
-----------------------------------------------------------------------
"SunnyOz" wrote in message
...
Thanks for replying.

Yes, I know CSV is in a text file format, but I was hoping to get just
the
reference name. When I click on the image in excel, the window that
normal
shows what row/cell you are referencing, it displays "Picture 411", which
I
assume is Excel's internal reference for that picture (There is a
different
number for each picture). This is what I would like to get exported to
the
CSV file if possible.

Any suggestions?


"Jon Peltier" wrote:

CSV is a text file format. Comma Separated Values. No images.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"SunnyOz" wrote in message
...
I have an eXcel spreadsheet (2000 ver) that has imbedded images in one
column
of the cells. I want to export the worksheet to a CSV file. (It is
like
a
product catalogue with each row containing an image of the product,
along
with name, description, price, etc)

Everything works fine when I save as CSV for Windows, except the
column
with
the images is empty for all rows. I would like for it to contain the
file
name of the image.

Is there any way to create a CSV file to include the images'
filenames?









  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default eXcel 2000 export CSV with images

If all you really want is "Picture 411" to appear where your picture is
located, then something like this run before you save as CSV might do the
trick:

Sub InsertPictureName()
With Worksheets("Sheet1")
For i = 1 To .Shapes.Count
.Shapes(i).TopLeftCell = .Shapes(i).Name
Next
End With
End Sub

--
Noel

"Jon Peltier" wrote in message
...
It's certainly possible to write a custom VBA procedure for generating
your own files, but you'd have to figure out how to represent the
information, and you'd have to realize that it would no longer be a valid
CSV file.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"Earl Kiosterud" wrote in message
...
Oz,

In a word, no. CSV gives data only. No formatting, margins, formulas,
links, etc. If you open a CSV with Notepad, you'll see every character
in the file (except the end-of-line characters). There simply ain't
nothing else.
--
Earl Kiosterud
www.smokeylake.com
-----------------------------------------------------------------------
"SunnyOz" wrote in message
...
Thanks for replying.

Yes, I know CSV is in a text file format, but I was hoping to get just
the
reference name. When I click on the image in excel, the window that
normal
shows what row/cell you are referencing, it displays "Picture 411",
which I
assume is Excel's internal reference for that picture (There is a
different
number for each picture). This is what I would like to get exported to
the
CSV file if possible.

Any suggestions?


"Jon Peltier" wrote:

CSV is a text file format. Comma Separated Values. No images.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______


"SunnyOz" wrote in message
...
I have an eXcel spreadsheet (2000 ver) that has imbedded images in one
column
of the cells. I want to export the worksheet to a CSV file. (It is
like
a
product catalogue with each row containing an image of the product,
along
with name, description, price, etc)

Everything works fine when I save as CSV for Windows, except the
column
with
the images is empty for all rows. I would like for it to contain the
file
name of the image.

Is there any way to create a CSV file to include the images'
filenames?







Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Cell Protection over Excel 2000 and 2003 Achez Excel Discussion (Misc queries) 3 June 6th 06 07:50 PM
Multiple Excel versions. Naveen Mukkelli Excel Discussion (Misc queries) 0 May 16th 06 12:55 AM
Change in Link Behavior - Excel 2000 to 2003 David G. Hoch Links and Linking in Excel 0 April 27th 06 04:41 AM
Send to from excel 2003 after upgrade from Office 2000 Anthony Excel Discussion (Misc queries) 2 December 1st 05 08:59 PM
Excel 2002 and 2000 co-install. Control Which Starts ? cnuk Excel Discussion (Misc queries) 2 January 17th 05 08:07 PM


All times are GMT +1. The time now is 02:21 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"