473,606 Members | 2,200 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Received some other date format while read the data from xlsx file.

8 New Member
Hi All,

I have received some other date value from the .xlsx file. Used the Spreadsheet::XL SX module to read the data from the file.

Source file value : 19/07/1988 14:00:00
The actual data : 32343.58 ( The values return from the cell while read the data from that cell).

I also used the Spreadsheet::XL SX::Utility2007 ;Spreadsheet::X LSX::Fmt2007; module to get the correct date but not yet resolve.

Can any one give me the idea to resolve the problem.

Regards,
Ram.
Jun 11 '12 #1
3 3960
numberwhun
3,509 Recognized Expert Moderator Specialist
Can you please share your code with us for how this data is being extracted from the spreadsheet?

Regards,

Jeff
Jun 21 '12 #2
Ramkumar85
8 New Member
Hi Jeff,

I below mentioned code used to get the data from xlsx file.

Expand|Select|Wrap|Line Numbers
  1. use strict;
  2. use warnings;
  3. use Spreadsheet::XLSX;
  4. use Spreadsheet::XLSX::Utility2007;
  5. use Spreadsheet::XLSX::Fmt2007;
  6. foreach my $sheet (@{$oExcel -> {Worksheet}}) 
  7. {
  8.     # print "Entered \n"; <STDIN>;
  9.     $sheetName = $sheet->{Name};
  10.     next unless (exists ($sheet->{MaxRow}) and (exists ($sheet->{MaxCol})));
  11.     foreach my $row ($sheet->{MinRow}+1 .. $sheet->{MaxRow})
  12.     {
  13.                 my $DateOfDelivery;    
  14. if($sheet->{Cells}[$row][29])
  15.         {
  16.             $DateOfDelivery = $sheet->{Cells}[$row][29]->Value;
  17.  
  18.             print "DATE_OF_DELIVERY :: <$DateOfDelivery> \n";<STDIN>;
  19.             # $DateOfDelivery= Spreadsheet::XLSX::Utility2007->LocaltimeExcel($DateOfDelivery);
  20.             # $DateOfDelivery = Spreadsheet::XLSX::Utility2007->ExcelFmt($hFmtDefault{0x0E}, $DateOfDelivery), 
  21.             $DateOfDelivery = Spreadsheet::XLSX::Utility2007->ExcelFmt('yyyy-mm-dd', $DateOfDelivery);
  22.             print "DATE_OF_DELIVERY AFTER FORMAT :: <$DateOfDelivery> \n";<STDIN>;
  23.         }
  24.     }
  25. }
  26.  

Regards,
Ram.
Jun 22 '12 #3
aselder
1 New Member
Based on my calculation, it's the number of days since 12/30/1899

He's a snippet of ruby code
Expand|Select|Wrap|Line Numbers
  1. require 'time'
  2. require 'activesupport'
  3.  
  4. d = Time.parse('1899-12-30')
  5. d + (32343.58).days
  6.  => 1988-07-19 13:55:12 -0700
  7.  
Jul 6 '12 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

2
4053
by: ohaya | last post by:
Hi, I'm working with a date string with a format as follows: Sat Dec 25 21:32:59 EST 2004 and I want to compare it to another date string of the format: 7/28/2004
3
2910
by: tvn007 | last post by:
I wrote the code below to read data from file into structure using C. However, I would like to convert it to C++. Could someone please give me some hints. I am not that famaliar with C++ Thanks in advance ///////////////////////////////////////////////////////////////////////////////////////////////////////////// struct test { char enabled,
5
816
by: Macca | last post by:
Hi, I have a table which has a date/time field. I am storing them as follows :- 01/01/2005 11:25 01/01/2005 19:44 02/01/2005 05:04
2
2072
by: tvn007 | last post by:
I am using the following code to read data from input file into structure. Not sure it is the best way. Please comment or you have better way. please let me kmow. ////////////////////////////////////////////////////////////////////////// #include <iostream> #include <string> #include <fstream> #include <sstream> using namespace std;
10
2326
by: kathy | last post by:
to read float type data, we can use: .... float f; fscanf(outfile, "%f", &f); .... but for double type, how to do that? .... double d;
20
35473
by: andreas | last post by:
When I copy a vb.net project using date formats from one PC with a windows date format f.e. dd/mm/yyyy to another PC having a format yy/mm/dd then I get errors. How can I change for a while in the project the date format in vb.code ( not in Windows) and how can I find out which date format the PC Windows is using. Thanks for any response
1
2169
by: jim.omalley | last post by:
I'm trying to write an interface to send scoreboard data from an XML file generated by a football stats program to a Chyron CODi character generator connected to my COM1 serial port (all operations on same machine). I'm already able to send static commands written into HTTP forms to control the CG via serial COM1. What I'm needing is a way to read and parse variables from the XML, then generate a CODi command string which can be written...
2
4252
by: pcouas | last post by:
Hi, I need to create an XSD file for XML document In mys XML document i could have various date format YYYYMMDD, YYMMDD, DDMMYY, DDMMYYYY I know theses formats before creating xsd file, but i search how define type for theses format ? Regards Philippe
2
2495
by: chikhalepankaj | last post by:
hi guys, I hv problem in reading data from text file. I want to read data in column wise from the table shown as below Module Ad Di Do 4011 1 2 - 4012 2 3 2 4013 2 3 3 4014 4 7 8 i m looking for a program which is going to read MODULE column and store it in a Char *Buf for eg.
5
5675
by: runsun | last post by:
Thanks in advance. This program is written in C. It needs to read all characters from a file; then write them into a 3D array (yes, 3D!). The file is a .prn file (one of the Excel types), which separates columns with space. To simplify the question, the file contains 3 rows and 2 columns: abc 2,3 defg 4 h 5,6 array is array, where the 3rd D contains the # of rows; 2nd D has #conlumns; 1st D contains the character elements. i.e....
0
8015
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
7951
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8439
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8430
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8305
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6770
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
2448
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1553
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1296
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.