Then I understand what you are up against. I will keep myself
On 7 Feb, 01:37, Jerry <
jet...@gmail.com> wrote:
> From my understanding, the native excel file only stores 5 kind of
> cell type: string, numeric, formula, boolean and error. Excel uses
> format string to render the value and present to the user.
>
> The aim of FormatType is to replicate the standard format string and
> its type in Excel. As those standard format string are known, they are
> easy to convert to the correct .NET types. As for custom format
> string, we definitely need extra class to parse the format string and
> then guess the correct type.
>
> I guess we can implement something similar to this data formatter