I'm trying to populate my combo box in a form, based on another 3 combo box selection in another form. I have managed to work it out with one problem.
The code I'm using is:
Private Sub Command715_Click()
DoCmd.OpenForm "SCPrices"
Forms!SCPrices![QuoteRef] = Me![Quote Ref]
Forms!SCPrices![Combo285] = Me![Scope 1] & Me![Scope 2] & Me![Scope 3]
End Sub
It does work fine, however it brings the value of the 3 other combo box as 1 e.g: Scope 1 selected as CCTV, Scope 2 selected as CAD, Scope 3 selected as Survey.
and I get the Combo285 value as "CCTVCADSurvey" instead of individual choice.
What should I use instead of & sign in the code to get the wanted result? Thank you for any help