I need to exclude all values that contain any letter from one of the fields. Basically only integers should be left. What code (Python/VB) do I have to put in field calculator for that?
Thanks!!!
I covered that here Query to have only numeric values in the field
Add a numeric field (integer)
Use the python parser and use the syntax given
int("".join([i for i in !YourFieldName! if i.isdigit()]) )
Dan, it does not work. That's what I get:
Ohhhh... You failed to mention that some of the entries don't have numbers in them.
So... you have to create a text/string field instead and delete the int( ) part. Now of course, if there is no numbers in the entry, you will get back an empty string.
The question remains
The rule set will determine the format of the new field, the values it returns and the outputs it will return... especially if you want this as an automagic all encompassing solution.
Sorry for not mentioning them...I think I can not use field calculator at all.. I dont want to change the values that have letters, I need them to be deleted...
If you want to simply blank out any entry in which GROUTE contains a letter then perhaps you could do this (test on a copy first!):
Since GROUTE could contain letters then it cannot be a number....
GROUTE = "" if any(b.isalpha() for b in !GROUTE!) else !GROUTE!
Thank you so much Ted! It worked. I assigned empty value for all non-numeric values and then excluded them by querying FC to FC
Ted, I exported the field calculator function to Python script and I get error now..
Do you have any idea why? Thanks again
> Error ocurred in:
File "P:\Batch\J420992\CODE\PYTHON\J420992_C1_Customers.py", line 66, in <module>
arcpy.CalculateField_management(WCSCUSTOMERCOPY, "GROUTE", " \"\" if any(b.isalpha() for b in !GROUTE!) else !GROUTE!", "PYTHON_9.3", "")
> Error Class is:
<class 'arcgisscripting.ExecuteError'>
> Available error details are:
ERROR 000539: IndentationError: unexpected indent (<expression>, line 1)
Failed to execute (CalculateField).
I new all this sounded familiar!!!
You have an extra space:
" \"\" if any(b.isalpha() for b in !GROUTE!) else !GROUTE!" ^
I use single quotes to wrap double quotes; easier to read:
'"" if any(b.isalpha() for b in !GROUTE!) else !GROUTE!'