
Originally Posted by
ranman256
Just put the calc in an empty column.
you may have to put the table before the field to help...
table1.field * tbl22.field44 /2
Thank you for the reply, I got that working now 
Now I have a different problem.
I have a lot of separate queries, which are basically the same, but with different criterias (someone prefers to keep them separate). They have the same number of columns, and the columns have the same ID. I need to merge all these into one, using a Union query. How is this best achieved?
Code:
SELECT Ledning.OpstroemKnudeID, Knude.Knudenavn, Opstrømsdybde.Opstrømsdybde, Ledning.NedstroemKnudeID, Nedstrømsdybde.Nedstrømsdybde, Knude_1.Knudenavn, Delledning.Laengde, Delledning.Handelsmaal, K_LedningMateriale.Beskrivelse, TVObs.TVObsKode, TVObs.TVObsKlasse, TVObs.Type1, TVObs.Type2
FROM RB_2-4
UNION
SELECT Ledning.OpstroemKnudeID, Knude.Knudenavn, Opstrømsdybde.Opstrømsdybde, Ledning.NedstroemKnudeID, Nedstrømsdybde.Nedstrømsdybde, Knude_1.Knudenavn, Delledning.Laengde, Delledning.Handelsmaal, K_LedningMateriale.Beskrivelse, TVObs.TVObsKode, TVObs.TVObsKlasse, TVObs.Type1, TVObs.Type2
From DE_2-4;

I need to add 4-5 queries into one. Queries like the ones shown in the picture.
I can't quite get it too work.