I am trying to lookup the second column in a combo box to auto fill a form using the AfterEvent Update
Me.VendeurID = Me.PickCombo.Column(0)
Me.FirstName = Me.PickCombo.Column(2)
Me.Emailtxt = DLookup("[Email]", "[Vendeurs]", "VendeurID = " & Me.VendeurID)
Me.Equipetxt = DLookup("[equipe]"...
I have managed to create a Report from a form that displays data per date
In the query criteria for the date it references the form
[Forms]![equipe_form]![Date de Vente]
The report is based on the results of the query as per the information entered in the form
so far so good
However, I want...
I have created a combo box
SELECT Vendeurs.VendeurID, Vendeurs.[Last Name], Vendeurs.[First Name] FROM Vendeurs GROUP BY Vendeurs.VendeurID, Vendeurs.[Last Name], Vendeurs.[First Name];
This successfuly returns the first name and last name, and i'm able to autofill a text box with the first...
Hello, I've been trawling the web trying to find how to build the expression to rank how many machines an individual has sold by date and to assign points for the ranks - so he who sold the most 6points, 2nd 4 points, 3rd 3 points, 4th 2 points 5th 1 point.
This is how my query is set out...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.