Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1078017
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T21:39:38+00:00 2026-05-16T21:39:38+00:00

I have an Excel spreadsheet with, among onther things, numbers that are identifiers. My

  • 0

I have an Excel spreadsheet with, among onther things, numbers that are identifiers.
My odbc reader should return me something like ‘55201562000016’, but too often it returns me something like ‘5.52016e+008’.

I only do the following, but apparently it does not suffice to tell the reader that it should be treated as a string and not an exponential integer :

siren = rdrxls("entr_siren").ToString().Trim()
siret = rdrxls("entr_siret").ToString().Trim()

I have tried this :

siren = Convert.ToInt64(rdrxls("entr_siren")).ToString().Trim()
siret = Convert.ToInt64(rdrxls("entr_siret")).ToString().Trim()

It should work, but sometimes it throws exceptions, because sometimes the data is erroneous (with letters for example) ; but I still need to fetch it.

Any idea ?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T21:39:38+00:00Added an answer on May 16, 2026 at 9:39 pm

    You could use Int64.TryParse() to see if you can cast the result into an Int64.
    TryParse() returns a boolean, indicating whether the cast was successfull or not.
    If it failed, keep the value as is, if it was successfull, overwrite the previously stored value with the ToString() of the cast result.

    double sirenValue;
    double siretValue;
    
    siren = rdrxls("entr_siren").ToString().Trim();
    siret = rdrxls("entr_siret").ToString().Trim();
    
    
    if (double.TryParse(siren, System.Globalization.NumberStyles.Float, System.Globalization.CultureInfo.InvariantCulture, out sirenValue))
    {
        siren = sirenValue.ToString();
    }
    
    if (double.TryParse(siret, System.Globalization.NumberStyles.Float, System.Globalization.CultureInfo.InvariantCulture, out siretValue))
    {
        siret = siretValue.ToString();
    }
    

    Hope this helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an Excel spreadsheet that needs to display data from our SQL database.
I have a Excel spreadsheet of requirements created from ReqPro that I need to
I have a Excel spreadsheet that has two tabs, I have data on the
I have a large Excel spreadsheet with a column that has an identifying number.
I have a series of worksheets in an Excel spreadsheet. Each worksheet details a
I am developing a Excel automation app that read and write to Excel spreadsheet.
I have an oracle report that outputs to an spreadsheet. The spreadsheet automatically takes
I have an Excel Spreadsheet (technically it is a Google Docs sheet, but the
I have multi module project where one project contains excel spreadsheet and it is
I have a customer trying to use a 75mb Excel spreadsheet as a database.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.