Sep 20, 2007 #1 corbinap Programmer Joined Nov 20, 2006 Messages 34 Location US I am getting an Datat Type error. I think because the fields are text but I am not sure how to change to make work. Thanks in advance. Me.TempAssignedSalon.RowSource = "select SalonID from salon where salonid<>" ' & Me.cmbSalon
I am getting an Datat Type error. I think because the fields are text but I am not sure how to change to make work. Thanks in advance. Me.TempAssignedSalon.RowSource = "select SalonID from salon where salonid<>" ' & Me.cmbSalon
Sep 20, 2007 #2 PHV MIS Joined Nov 8, 2002 Messages 53,708 Location FR Perhaps this ? Code: Me.TempAssignedSalon.RowSource = "select SalonID from salon where salonid<>'" & Me.cmbSalon & "'" Hope This Helps, PH. FAQ219-2884 FAQ181-2886 Upvote 0 Downvote
Perhaps this ? Code: Me.TempAssignedSalon.RowSource = "select SalonID from salon where salonid<>'" & Me.cmbSalon & "'" Hope This Helps, PH. FAQ219-2884 FAQ181-2886