I am trying to use ArcMap's Field Calculator to populate values in a column based on a value in another column. So, in pseudo-code:
if [field1] = 'Foo'
set [field2] = 'Bar'
endif
Something like that. Test for 'foo' in the first attribute, and set the record's second attribute to 'bar.' Seems like it should be pretty easy to do, but I keep receiving a "user interrupt" error every time I try running anything. I think I have a misunderstanding of how to build VBA expressions with the Field Calculator...
-
What version of arcmap? I think VBA in the field calculator got deprecated at 10.0. Here's a good intro to the python calculator.Kirk Kuykendall– Kirk Kuykendall2011年03月01日 14:50:21 +00:00Commented Mar 1, 2011 at 14:50
1 Answer 1
Try something like this:
dim f2
if [field1] = "foo" then
f2 = "bar"
end if
Screen shot of this being used in the field calculator.alt text
Explore related questions
See similar questions with these tags.