Jump to content

Recommended Posts

Posted (edited)

Hi ,

Is there a function that can get number formating of an excel cell?

i need to read prices from a column and get the currency formating because the cells are formated with diferent currencyes. or to read the formated string in the cell to include in a sql database.

thx in advance.

Edited by Blinky
Posted

This will open an existing xlsx-file and display the format of cell "A1":

#include <excel.au3>
$oExcel = _ExcelBookOpen("C:tempMappe1.xlsx")
ConsoleWrite(@error & @CRLF)
$sCellFormat = $oExcel.ActiveSheet.Range("A1").NumberFormat
ConsoleWrite($sCellFormat & @CRLF)

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

Glad to be of service :)

My UDFs and Tutorials:

  Reveal hidden contents

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...