View formats of columns

J

James C

Currently using Excel version 2002
I have a spreadsheet with a large number of columns with different data
formats. Is there a way of viewing the formats for each of the various
columns, similiar to the facility of opting to view cells with formulas
rather then data?
 
L

Luke M

No simple method with the XL sheet, but you could use some VB to define them.
Selecting some blank cells that contain your formats (presumably a row), you
could do this:

Sub ListFormats
For each c in Selection
c.value = c.NumberFormat
Next
End Sub
 
J

James C

Thanks Luke this helped
--
James


Luke M said:
No simple method with the XL sheet, but you could use some VB to define them.
Selecting some blank cells that contain your formats (presumably a row), you
could do this:

Sub ListFormats
For each c in Selection
c.value = c.NumberFormat
Next
End Sub
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top