Hi Folks,
Newbie... I am trying to divide a field [StandArea] (the values are currently in m2) by 10000 to get hectares. I want the result in the same field.
Thanks
Hi Folks,
Newbie... I am trying to divide a field [StandArea] (the values are currently in m2) by 10000 to get hectares. I want the result in the same field.
Thanks
If you want to actually change the data, an update query:
UPDATE TableName SET StandArea = StandArea/10000
You might want to add the Round() function.
What you have in the criteria should be in the Update To section. Or you can switch to SQL view, which is what I posted.
thanks very much... that did it.
Happy to help.