Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI i have a list box with numerical and alphabetical value, how to show only alphabetical value.
asd
hsbd
dfd
251
152544
sdfd
May be this
If(IsText(Field), Field)
May be this?
In your listbox General tab -> Field - Expression
= IF(ISNUM(Alphabet), Null(), Alphabet)
OR
= IF(NOT IsNum(Alphabet), Alphabet)
Thanks both of you it worked.
may be try this way
a:
LOAD*, PurgeChar(MyField,'01234567890') as New;
LOAD * INLINE [
MyField
asd
hsbd
dfd
251
152544
sdfd
];