-
Notifications
You must be signed in to change notification settings - Fork 401
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Casting Error in Export-Excel #108
Comments
Thanks, I'll investigate. |
@fMichaleczek Please, could you post a small sample of data that causes the problem |
|
Great, could you post the a.clixml file? |
never mind. it caused the error on my side |
dfinke
added a commit
that referenced
this issue
Jun 28, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have an reccurent error in Export-Excel.ps1
The french message error is (sorry I don't have a english system available now) :
Surcharge introuvable pour « TryParse » et le nombre d'arguments « 4 ».
Problem is a casting problem that can be resolve in ligne 184 :
Before :
if( [Double]::TryParse( $cellValue, [System.Globalization.NumberStyles]::Any, [System.Globalization.NumberFormatInfo]::InvariantInfo, [ref]$r ) ) {
After :
if( [Double]::TryParse( [string]$cellValue, [System.Globalization.NumberStyles]::Any, [System.Globalization.NumberFormatInfo]::InvariantInfo, [ref]$r ) ) {
The text was updated successfully, but these errors were encountered: