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.



Read-Only Read-Only Topic
Go
Search
Notify
Tools
Dates
 Login/Join
 
Gold member
posted
I have two dates formatted mm/dd/yyyy hh:mm:ss and I want to determine the number of hours between them. Format is hh.ssssssss. Any thoughts?


WebFocus 7703
Windows 7
Output format: HTML, Excel, PDF
 
Posts: 54 | Registered: May 07, 2008Report This Post
Expert
posted Hide Post
The following works with dates formatted yyyy/mm/dd hh:mm:ss:

-SET &ECHO=ALL;

-SET &DTTM1X = '2008/06/01 14:56:11';
-SET &DTTM1Y = EDIT(&DTTM1X,'9999$99$99$99$99$99');
-SET &DTTM1  = HINPUT(14, '&DTTM1Y.EVAL' , 14, 'HYYMDS');

-SET &DTTM2X = '2008/07/02 11:10:38';
-SET &DTTM2Y = EDIT(&DTTM2X,'9999$99$99$99$99$99');
-SET &DTTM2  = HINPUT(14, '&DTTM2Y.EVAL' , 14, 'HYYMDS');


-SET &DIFF_H = HDIFF(&DTTM2, &DTTM1, 'HOUR', D12);
-SET &DIFF_M = HDIFF(&DTTM2, &DTTM1, 'MINUTE', D12);
-SET &DIFF_S = HDIFF(&DTTM2, &DTTM1, 'SECOND', D12);

-TYPE DIFF IN HOURS: &DIFF_H
-TYPE DIFF IN MINUTES: &DIFF_M
-TYPE DIFF IN SECONDS: &DIFF_S


EDIT is used to strip the / and : from the date-time string.
HINPUT is used to convert the date-time string to a date-time formatted value.
HDIFF is used to determine the difference between the two date-time formatted values in different units.

For some reason, I can't get this to work with dates formatted mm/dd/yyyy hh:mm:ss.


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
Guru
posted Hide Post
HDIFF comes to mind.


jimster06
DevStu WF 7.6.11
W7
HTML, PDF, EXL2K
 
Posts: 252 | Location: USA | Registered: April 15, 2003Report This Post
Gold member
posted Hide Post
Thanks, the HDIFF worked beautifully.


WebFocus 7703
Windows 7
Output format: HTML, Excel, PDF
 
Posts: 54 | Registered: May 07, 2008Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic


Copyright © 1996-2020 Information Builders