Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have the following table
aaaa
34
22.2
drr
and I would like to filter number rows so I obtain
24
22.2
Any hint?
Hi,
Try like this
LOAD
*
FROM Data
Where IsNum(Value);
Hope this helps you.
Regards,
Jagan.
Hi,
Hope this will help you.
You WHERE ISNUM(Value);
like below