Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi
i have a scenario in this i need to display numbers in one field and number+character combination in one field
1122
3344
1568
ww12
34rg
ww17
10kk
ttttt
in this i want to display 1122,3344,1568 in one field and remaining data in one field like that i have lot of data please help me to solve this problem
Load
If( Isnum(trim(YourField)), YourField) as Numeric,
If( Not Isnum(trim(YourField)), YourField) as AlphaNumeric
try this
KeepChar('ww12',0123456789) as number
PurgeChar('ww12',0123456789) as text
replace ww12 with your field
Load
If( Isnum(trim(YourField)), YourField) as Numeric,
If( Not Isnum(trim(YourField)), YourField) as AlphaNumeric
thanks tresesco thank u so much