Before I put together a test case…
A query I am about to develop produces calculated values. Some of the calculated fields rely on results “in other columns”. e.g.,
Field3 = Field1+Field2, Field4=2*Field3.
What if I change the field order, and write it like this:
Field3=2*Field4, Field4 = Field1+Field2 ?
Will either of those work?
Or do I need to write two queries, one to calc (the original) Field3, and a second query to calc Field4?