I'm having to read a spreadsheet, and depending on if the column is indented or not, store the value.

If the field's formatting is indented, I ignore it, it if isn't, I store it.

I read the field's value like this...
VB Code:
  1. myVariable = exll.Worksheets(TabName).Cells(12, 1).Value.ToString

But how can I read how the field is formatted??

So it would end up something to the effect of ...
VB Code:
  1. if ( exll.Worksheets(TabName).Cells(12, 1).FORMAT_IS_CORRECT ?? )then
  2.      myVariable = exll.Worksheets(TabName).Cells(12, 1).Value.ToString
  3. else
  4.      myVariable = "Skipped Value"
  5. End If