In looking at the SQL string again, is this what you mean?
FROM:
WHERE [OrderName] = '" & Me.cbodOrderName.Column(1) & _
"' AND [PrimaryWorkGroup] = '" & Me.cbodOrderName.Column(2) & _
"' AND [SecondaryWorkGroup] = '" & Me.cbodOrderName.Column(2) & "'"
TO:
WHERE [OrderName] = '" & Me.cbodOrderName.Column(1) & _
"' AND [PrimaryWorkGroup] = '" & Me.cbodOrderName.Column(2) & _
"' AND [SecondaryWorkGroup] = '" & Me.cbodOrderName.Column(3) & "'"
Note the column number change for the SecondaryWorkGroup field.
I would try breaking this down by adding this line:
MsgBox sSQL
before the code is run to see if your string is built properly. Can you post the results of that MsgBox?
mmcdonal
Look it up at:
http://wrox.books24x7.com