Im trying to have the same field from the same database twice inone call. because i have to select by one kriteria and use data from another kriteria.The DB is not well structored and im not able to change it. i have used the name SerieDATA.indhold and SerieDATA_1.indhold. They are suppose to be the same but i dosen't work that way. and i can't use this name to do it. Is it possible to do this in one call?SELECT SerieDATA.Indhold, Sum((CInt([SerieDATA_1].[indhold]))) AS DataSUMofKol6SortedByKol/FROM SerieDATA INNER JOIN SerieDATA AS SerieDATA_1 ON (SerieDATA.SerieNR = SerieDATA_1.SerieNR) AND (SerieDATA.ProgramNR = SerieDATA_1.ProgramNR)WHERE (((SerieDATA.Kolonne)=6) AND ((SerieDATA_1.Kolonne)=7))GROUP BY SerieDATA.Indhold;