Bonjour,
Voilà ma requête croisée de base:
Elle me donne un résultat de type
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6 TRANSFORM Last(definition_etat.nom_etat) AS LastOfnom_etat SELECT magasin.nom_magasin FROM tache INNER JOIN (magasin INNER JOIN (definition_etat INNER JOIN etat_tache ON definition_etat.id_etat = etat_tache.id_etat) ON magasin.id_magasin = etat_tache.id_magasin) ON tache.Id_tache = etat_tache.id_tache GROUP BY magasin.numero_vague, magasin.nom_magasin ORDER BY magasin.numero_vague PIVOT tache.numero_tache;
mag 1 etat_tache1 etat_tache2 ...
mag 2 etat_tache1 etat_tache2 ...
mag 3 etat_tache1 etat_tache2 ...
J'aimerais n'avoir qu'un magasin (qu'une ligne), en fonction du magasin selectionné dans une combo box d'un formulaire.
J'ai essayé d'insérer
WHERE nom_magasin = Forms!Mon_formulaire!cmb_box
Mais cela ne marche pas: j'obtiens un résultat vide
Merci pour votre aide!!!
Partager