Focal Point
[SOLVED] ALPHA TO NUMBER

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/5027059096

November 30, 2018, 04:12 AM
jenni
[SOLVED] ALPHA TO NUMBER
Hi,

I want a string/Alpha to be a Format number Cell in Excel.
So I Need to tranform my Alpha value into a number.

My Source is a SQL, where my value is a A14V.

Thanks!!!

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


WebFOCUS 8.1.05
Windows, All Outputs
November 30, 2018, 06:14 AM
Tony A
You could simply use EDIT(alphastring) if the string doesn't contain any alpha characters other than numerals.
TABLE FILE CAR
SUM COMPUTE ALPHA/A14V = '123456.65';
    COMPUTE NUMERIC/D12.2 = EDIT(ALPHA);
BY COUNTRY
END

I should add that a comma is not acceptable although a decimal point is OK.

If there are non-numerals then you will receive a value of zero.

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
November 30, 2018, 06:18 AM
jenni
when I Edit it, then I just get 0,00
Don't know why


WebFOCUS 8.1.05
Windows, All Outputs
November 30, 2018, 06:20 AM
Tony A
What does a sample of your data look like? Does it contain commas because you are using continental numeric notation?

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
November 30, 2018, 06:44 AM
jenni
Ja, just recognized.

Solved ist. I changed my Format in my SQL, sothat it's already a number.


It's SOLVED


WebFOCUS 8.1.05
Windows, All Outputs
November 30, 2018, 06:51 AM
Tony A
Probably the better way of acheiving it - it also pushes the validation to SQL as well!

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10