Skip to content
This repository has been archived by the owner on Jul 31, 2019. It is now read-only.

Issue and workaround with localized portuguese date with * #14

Open
hferreira opened this issue Aug 28, 2011 · 0 comments
Open

Issue and workaround with localized portuguese date with * #14

hferreira opened this issue Aug 28, 2011 · 0 comments

Comments

@hferreira
Copy link

The dates are correctly parsed even with localizes dates except for Portuguese (Portugal) with the * type date.

However there is a workaround.

In the method xf of the ExcelFile.as file, replace the following block of code:

            case BIFFVersion.BIFF8:
                font = r.data.readUnsignedShort();
                format = r.data.readUnsignedShort();
                break;

By this one:

            case BIFFVersion.BIFF8:
                font = r.data.readUnsignedShort();
                format = r.data.readUnsignedShort();
                if (format == 14)
                    format = 165;
                break;
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant