hi, i have this recordsource (cutted of the part after FROM)
Code:
SELECT Trattative.IDtrattativa, Trattative.CandidatoID, Aziende_1.Azienda AS [Banca candidato], Candidati.nomecognome, Comuni.Comune, Aziende.Azienda, Trattative.StatoTrattativa, Trattative.Fase, Trattative.Manager, Trattative.Nostra, Trattative.[Data inizio trattativa], Trattative.[Data fine trattativa], Trattative.[Head hunter], Trattative.[Ral nuova], Trattative.NumeroCandidatoCliente, Trattative.Note, Candidati.[ptf trasferibile personale]
i have a combobox that has as source the field list of this query; as you can say i have two similar fields, "[Banca candidato] that is Aziende_1.Aziende" and Aziende.Azienda.
since i use this combo to filter the query, how can i get the correct name field from combobox?
If i choose [banca candidato] i can't use this value to filter, cause the real name is "Aziende_1.azienda", if i choose "azienda" i'm not able to find the correct name that is "aziende.azienda" and not "aziende_1.Azienda"
thanks