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]logic to show the report if change in value

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED]logic to show the report if change in value
 Login/Join
 
Member
posted
Hi,

I have a data which shows like below:-

Emp ID Comment
123 XXX
123 XXX
234 ZZZ
234 ZzZ
345 AAA
345 AAA
456 YYY
456 YYy

Now I need to a report which shows only changed in value
From example from above table I need a report which shows like below

Column1 Column2 Column3
234 ZzZ ZZZ
456 YYY YYy

This message has been edited. Last edited by: <Emily McAllister>,


Webfocus 7.1.6
Windows
Excel, HTML, PDF,AHTML
 
Posts: 21 | Registered: April 08, 2009Report This Post
Virtuoso
posted Hide Post
MA,
Are there only 2 comments for each empid?
If so, this could do it:
  
TABLE FILE ...
LIST COMMENT BY EMPID
ON TABLE HOLD
END
TABLE FILE HOLD
SUM COMMENT
BY EMPID
ACROSS LIST NOPRINT
ON TABLE HOLD AS H2
END
TABLE FILE H2
WHERE E02 NE E03
PRINT E02 E03
BY E01
END

This message has been edited. Last edited by: Danny-SRL,


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

 
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006Report This Post
Master
posted Hide Post
M A,

you want to utilizes the LAST command. Please see my example below.

TABLE FILE EMPLOYEE
SUM MAX.COMMENT
 COMPUTE COMPARE_VALUE/AXXX MISSING ON =IF LAST EMP_ID EQ EMP_ID AND LAST COMMENT NE LAST COMMENT THEN LAST COMMENT ELSE MISSING;
BY EMP_ID
BY COMMENT NOPRINT  
ON TABLE HOLD AS MYHOLD
END

TABLE FILE MY HOLD
PRINT COMPARE_VALUE COMMENT
BY EMP_ID
WHERE COMPARE_VALUE IS NOT MISSING
END

This message has been edited. Last edited by: eric.woerle,


Eric Woerle
8.1.05M Gen 913- Reporting Server Unix
8.1.05 Client Unix
Oracle 11.2.0.2
 
Posts: 750 | Location: Warrenville, IL | Registered: January 08, 2013Report This Post
Guru
posted Hide Post
Like Eric says, try using the LAST command.
for example try this code

/*
TABLE FILE **
PRINT EPMID COMMENT
WHERE EMPID EQ LAST EMPID AND
COMMENT NE LAST COMMENT
END
/*


WF 7.6.11
Oracle
WebSphere
Windows NT-5.2 x86 32bit
 
Posts: 398 | Registered: February 04, 2008Report 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]logic to show the report if change in value

Copyright © 1996-2020 Information Builders