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     [CLOSED] Can you sort across by date?

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Can you sort across by date?
 Login/Join
 
Member
posted
I'm using the following line:

ACROSS STATUS_CHANGE_DATE_MODIFIED AS 'Month'

Giving me the below output:

Month
01-2019 02-2019 03-2019 12-2018

I'd like 12-2018 to be left most and then continue chronologically.

My STATUS_CHANGE_DATE_MODIFIED is determined using SQL like so:

to_char(stat.status_change_date, 'MM-YYYY') status_change_date_modified,

Any help would be greatly appreciated! Thanks!

This message has been edited. Last edited by: FP Mod Chuck,


intsoccersuperstar
WebFOCUS 8105m
Windows, Excel
 
Posts: 16 | Registered: October 17, 2018Report This Post
Virtuoso
posted Hide Post
It seems that STATUS_CHANGE_DATE_MODIFIED is not a date but a char due to : to_char(stat.status_change_date, 'MM-YYYY'), reason why 01-2019 is ordered before 12-2018
If it was a date 12-2018 was placed before 01-2019

You should better keep the date as a date and use IB format to have the date displayed as MM-YYYY

something such as
DEFINE FILE GGSALES
DATEMMYYYY /MYY = DATE;
END
TABLE FILE GGSALES
SUM DOLLARS
BY DATEMMYYYY
END

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


WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF
In Focus since 2007
 
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013Report This Post
Expert
posted Hide Post
Add another SQL column and use as your sort:
to_char(stat.status_change_date, 'YYYY-MM') status_change_date_sort

In your ACROSS:
ACROSS STATUS_CHANGE_DATE_SORT NOPRINT
ACROSS STATUS_CHANGE_DATE_MODIFIED AS 'Month'


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
 
Posts: 1972 | Location: Centennial, CO | Registered: January 31, 2006Report 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     [CLOSED] Can you sort across by date?

Copyright © 1996-2020 Information Builders