UPDATE Table1 SET Table1.Field3 = (Table1.Field2/Table1.Field1)
Yeilds a figure rounded off to the nearest whole number. And I'm working with percents, so its either 100 percent or 0 percent.
But if I do a select statement to just show that division, it comes out perfect.]
Any ideas? My temporary fix was to first multiply that division in the parentheses by 100, and then I would get a number from 0 to 100, and a percentage could be inferred if you wanted it to look at it that way, but I would rather have a true decimal.
Yeilds a figure rounded off to the nearest whole number. And I'm working with percents, so its either 100 percent or 0 percent.
But if I do a select statement to just show that division, it comes out perfect.]
Any ideas? My temporary fix was to first multiply that division in the parentheses by 100, and then I would get a number from 0 to 100, and a percentage could be inferred if you wanted it to look at it that way, but I would rather have a true decimal.