Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I need help on help on the below scenario :
I have field named as "Name"
Name |
---|
1 |
2 |
3 |
John |
Mark |
I need the column Name as only Names in it in script such as :
Name |
---|
John |
Mark |
Kindly Help.
Regards,
Mahamed
you can check for number and exclude the field (bold)
load Name
Inline [
Name
1
2
3
John
Mark
Mark1
]
Where not IsNum(Name);
may be like:
load *,
if(len(Name)>1, Name) as Name
from tableName;
try this
PurgeChar(name,'0123456789') as new
you can check for number and exclude the field (bold)
load Name
Inline [
Name
1
2
3
John
Mark
Mark1
]
Where not IsNum(Name);
Try,
Test:
LOAD FieldName
FROM
[Input.xlsx]
(ooxml, embedded labels, table is Target) where Not IsNum(FieldName);
Or
Where IsText(FieldName);
Hey maxgro,
It works.! It is new for me
Thank you for the help.