I have the following Union Query
SELECT TblRegnskap.KundeNr, TblRegnskap.Konto, TblRegnskap.År, TblRegnskap.Periode, "Regnskap" AS Type
FROM TblRegnskap
GROUP BY TblRegnskap.KundeNr, TblRegnskap.Konto, TblRegnskap.År, TblRegnskap.Periode
UNION SELECT TblBudsjett2.KundeNr, TblBudsjett2.Konto, TblBudsjett2.År, TblBudsjett2.Periode, "Budsjett" AS Type
FROM TblBudsjett2
GROUP BY TblBudsjett2.KundeNr, TblBudsjett2.Konto, TblBudsjett2.År, TblBudsjett2.Periode;
When I run this query, the field [KundeNr] contains a symbol that looks like a paper clip and not the information from the field [Kundenr] in the table [TblBudsjett2]
This only happens on records from the [TblBudsjett2] not the [TblRegnskap]. Those records are fine.
What am I doing wrong.