Ik heb een query die gebruik maakt van 2 tabellen.
Nu zijn deze tabellen gelinkt
Ik wil alleen dat wanneer een groetboekrekening in "H-directie hulp_maand" voorkomt en niet in H-Directie_HULP2 Cumulatief hij wel wordt getoond en andersom. Eigenlijk zoek ik dus een manier om de standaard linkopties in access niet te hoeven gebruiken.
Nu zijn deze tabellen gelinkt
Code:
SELECT [H-Directie_HULP MAAND].Kostenplaats, [H-Directie_HULP MAAND].Grootboekrek, [H-Directie_HULP MAAND].[Omschrijving grootboekrek], Sum([H-Directie_HULP MAAND].[Bedrag Maand_H]) AS [Bedrag Maand], [H-Directie_HULP MAAND].[Budget Maand_H] AS [Budget Maand], Sum([H-Directie_Hulp2 CUMULATIEF].[Bedrag Cumulatief_H]) AS [Bedrag Cumulatief], [H-Directie_HULP MAAND].[Budget Cumulatief_H] AS [Budget Cumulatief], IIf([Budget Maand]=0,0,([Bedrag Maand]-NZ([Budget Maand]))/[Budget Maand]) AS [Afwijking Maand %], IIf([budget maand]=0,0,([Bedrag Cumulatief]-[Budget Cumulatief])/[Budget Cumulatief]) AS [Afwijking Cumulatief %]
FROM [H-Directie_HULP MAAND] INNER JOIN [H-Directie_Hulp2 CUMULATIEF] ON [H-Directie_HULP MAAND].Grootboekrek = [H-Directie_Hulp2 CUMULATIEF].Grootboekrek
GROUP BY [H-Directie_HULP MAAND].Kostenplaats, [H-Directie_HULP MAAND].Grootboekrek, [H-Directie_HULP MAAND].[Omschrijving grootboekrek], [H-Directie_HULP MAAND].[Budget Maand_H], [H-Directie_HULP MAAND].[Budget Cumulatief_H];
Ik wil alleen dat wanneer een groetboekrekening in "H-directie hulp_maand" voorkomt en niet in H-Directie_HULP2 Cumulatief hij wel wordt getoond en andersom. Eigenlijk zoek ik dus een manier om de standaard linkopties in access niet te hoeven gebruiken.