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] convert difficult alpha to decimal

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] convert difficult alpha to decimal
 Login/Join
 
Virtuoso
posted
We have a dtabase that holds a A50 field
for some reason in that field sometimes it holds a value that looks like this
9,500.00 or in case of negative amount (15,765.45)
Is there an easy way to convert this or is there only the hard way by removing the unwanted characters ")" and "," and replace the "(" by a minus sign.

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




Frank

prod: WF 7.6.10 platform Windows,
databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7
test: WF 7.6.10 on the same platform and databases,IE7

 
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006Report This Post
Virtuoso
posted Hide Post
No other way that I know of Frank...


Alan.
WF 7.705/8.007
 
Posts: 1451 | Location: Portugal | Registered: February 07, 2007Report This Post
Expert
posted Hide Post
Hi Frank,

Try this, I had to create negative values:

  
DEFINE FILE EMPLOYEE
  XSAL1/D12.2BC = IF DEPARTMENT EQ 'MIS' THEN CURR_SAL * (-1) ELSE CURR_SAL;
  XSAL2/A15     = IF XSAL1 LT 0 THEN '-' || EDIT(XSAL1) ELSE EDIT(XSAL1);
  XSAL3/P12.2   = ATODBL(XSAL2, '15', XSAL3);
END
TABLE FILE EMPLOYEE
PRINT 
   LAST_NAME 
   FIRST_NAME 
   DEPARTMENT  
   XSAL1
   XSAL2
   XSAL3
END
-EXIT


hth


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
 
Posts: 1972 | Location: Centennial, CO | Registered: January 31, 2006Report This Post
Virtuoso
posted Hide Post
thx Tom
but that is an easy one

the alpha field will look like (5000) and wont hold decimal or 1000 breaks

I think Alan is right...need the STRREP function




Frank

prod: WF 7.6.10 platform Windows,
databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7
test: WF 7.6.10 on the same platform and databases,IE7

 
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006Report This Post
Virtuoso
posted Hide Post
I Solved it with the STRREP Function

-* File alphalomgtonumber.fex
DEFINE FILE CAR
BEDRAG/A15=IF COUNTRY EQ 'ITALY' THEN '(25,345.76)' ELSE IF COUNTRY EQ 'ENGLAND' THEN '1,859,001.45' ELSE '9,765.33';
BEDRAG2/A15=STRREP (15,BEDRAG ,1,')',0,'',15,BEDRAG2);
BEDRAG3/A15=STRREP (15,BEDRAG2 ,1,'(',1,'-',15,BEDRAG2);
BEDRAG4/A15=STRREP (15,BEDRAG3 ,1,',',0,'',15,BEDRAG2);
BEDRAGV/D15.2=EDIT(BEDRAG4);
END
TABLE FILE CAR
PRINT BEDRAG 
BEDRAG2
BEDRAG3
BEDRAG4
BEDRAGV
BY COUNTRY
ON TABLE COLUMN-TOTAL
END





Frank

prod: WF 7.6.10 platform Windows,
databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7
test: WF 7.6.10 on the same platform and databases,IE7

 
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006Report This Post
Expert
posted Hide Post
BTW: Would / could that field contain other information as well? Or "just" an alpha variation of a numberic value (like a single "word" / item)?
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report 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] convert difficult alpha to decimal

Copyright © 1996-2020 Information Builders