I'm using PHPExcel and generating the excel just fine but I have some data in CSV format and wanted to know if I could display it as a Bullet List.

Example of what I have:

some, data, in, cvs, format

This is what I would like

• some
• data
• in
• cvs
• format

Is there a format or formula I could use?

UPDATE:

I saw this formula but I can't get it to work

=CHAR(149)&" "&C2&CHAR(10))
link|improve this question

do you mean when you export it from CSV to Excel or just take the data and make a list with it? – Charles Forest Jan 20 at 15:33
Just take the data and make a list – Phill Pafford Jan 20 at 15:37
Do you want the list contained inside of a single cell? – afuzzyllama Jan 20 at 16:48
yes, I have several cells and a particular row I have the CSV Data which I would like to display as the bullet/unordered list – Phill Pafford Jan 20 at 17:13
feedback

1 Answer

Assuming your spreadsheet looks like this:

      A      B         C      D       E
1     some  data      in     csv    format
2     • some                
3     • data
4     • in
5     • csv             
6     • format

In cells A2 through A6, I put this formula:

=CHAR(149)&" "&OFFSET($A$1,0,ROW()-2)&CHAR(10)

However, if you have the entire comma separated list in one cell (I'm assuming A1 for now), use this formula:

=CHAR(149)&" "&SUBSTITUTE(A1,",",CHAR(10)&CHAR(149))

Then increase the vertical height of the cell and turn text wrapping on. Is this what you're looking for?

link|improve this answer
I will have to test this out, thanks – Phill Pafford Mar 21 at 19:51
Have you had a chance to try this out? – Ben Strombeck May 11 at 3:25
sorry not yet but this is for my next project – Phill Pafford May 11 at 12:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.