Hi,
This is my query:
It gives my a result for each year that is selected in the combobox. Works nice but:
The column name is the year that is selected and I rather have a fixed name like 'MyYear'. In that way I can link the query in another query. How can this be done?
EasyIT
"Do you think that’s air you're breathing?
This is my query:
Code:
TRANSFORM First(tbl_beschikkingen_cono.type) AS EersteVantype
SELECT tbl_beschikkingen_cono.fk_stud_pis
FROM tbl_beschikkingen_cono
WHERE (((tbl_beschikkingen_cono.jaar)=(Eval('[Forms]![FormNEW]![cmbJaar]'))) AND ((tbl_beschikkingen_cono.fk_stud_pis) Is Not Null))
GROUP BY tbl_beschikkingen_cono.fk_stud_pis
PIVOT tbl_beschikkingen_cono.jaar;
It gives my a result for each year that is selected in the combobox. Works nice but:
The column name is the year that is selected and I rather have a fixed name like 'MyYear'. In that way I can link the query in another query. How can this be done?
EasyIT
"Do you think that’s air you're breathing?