Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Using an integer in DATEDIF function to get number of days

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Using an integer in DATEDIF function to get number of days
 Login/Join
 
Gold member
posted
I am trying to get the number of days from a start date to the current date. The start date is coming from the DB in an integer (I10) format.

Here's my code so far:

DEFINE FILE FACT_TABLE
NUMBER_OF_DAYS/I4 = DATEDIF(START_DATE, &YYMD, 'D');
END

TABLE FILE FACT_TABLE
PRINT NUMBER_OF_DAYS
END

I am not sure how to convert START_DATE to a format that the DATEDIF can understand. The results I'm getting are lager (40011 days) and that makes me think that the START_DATE isn't being converted to a value that the DATEDIF can understand. What am I doing wrong? Thanks for the help.

Daniel

This message has been edited. Last edited by: Kerry,


In Focus since 2012
WebFOCUS 8.0.07
Windows, All Outputs
 
Posts: 59 | Registered: November 15, 2012Report This Post
Expert
posted Hide Post
Here's a working example. DATEDIF requires fields in date format:

DEFINE FILE CAR
START_DATE/I10 = 20121203;

START_DATE_I/I8YYMD = START_DATE;
START_DATE_YYMD/YYMD = START_DATE_I;

TODAY_YYMD/YYMD = &YYMD;
NUMBER_OF_DAYS/I9 = DATEDIF(START_DATE_YYMD, TODAY_YYMD, 'D');
END

TABLE FILE CAR
PRINT 
START_DATE
START_DATE_I
START_DATE_YYMD
NUMBER_OF_DAYS
BY COUNTRY
WHERE RECORDLIMIT EQ 1
END


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Gold member
posted Hide Post
That did the trick! Thanks!

Daniel


In Focus since 2012
WebFOCUS 8.0.07
Windows, All Outputs
 
Posts: 59 | Registered: November 15, 2012Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Using an integer in DATEDIF function to get number of days

Copyright © 1996-2020 Information Builders