Hi all,
I am trying to update a field in a table with the sql below. I want to update one field only with the given criteria below. But it gives me the bloody pop-up message "Enter Parameter Value for [FlowSumSKUCountryTON]![Product Code] and others...". Any clues? I tried to put = instead of Like but still it does the same.
Thanks a lot!
~Jbeck
UPDATE Deneme SET Deneme.[Percent] = "[FlowSumSKUCountryTON]![SumOfSKUFlowTon]/[FlowSumUnicaCountryTON]![SumOfUnicaFlow]"
WHERE (((Deneme.[Product Code]) Like [FlowSumSKUCountryTON]![Product Code]) AND ((Deneme.Unica) Like [FlowSumSKUCountryTON]![Unica]) AND ((Deneme.Unica_2) Like [FlowSumSKUCountryTON]![Unica_2]) AND ((Deneme.Countries) Like [FlowSumSKUCountryTON]![Countries]));
I am trying to update a field in a table with the sql below. I want to update one field only with the given criteria below. But it gives me the bloody pop-up message "Enter Parameter Value for [FlowSumSKUCountryTON]![Product Code] and others...". Any clues? I tried to put = instead of Like but still it does the same.
Thanks a lot!
~Jbeck
UPDATE Deneme SET Deneme.[Percent] = "[FlowSumSKUCountryTON]![SumOfSKUFlowTon]/[FlowSumUnicaCountryTON]![SumOfUnicaFlow]"
WHERE (((Deneme.[Product Code]) Like [FlowSumSKUCountryTON]![Product Code]) AND ((Deneme.Unica) Like [FlowSumSKUCountryTON]![Unica]) AND ((Deneme.Unica_2) Like [FlowSumSKUCountryTON]![Unica_2]) AND ((Deneme.Countries) Like [FlowSumSKUCountryTON]![Countries]));