Hey there,
I need a little help trying to combine two similar queries to save time. The current SQL codes are as follows:
UPDATE cableconductor INNER JOIN [eMax Prices] ON cableconductor.[Item No] = [eMax Prices].[Item No]
SET cableconductor.Cablecostperfoot = [eMax Prices].[Unit Cost]*[cableconductor].[Multiplier];
and...
UPDATE cableconductor INNER JOIN [eMax Prices] ON cableconductor.[Neutral Item No]=[eMax Prices].[Item No]
SET cableconductor.Cablecostperfoot = cableconductor.Cablecostperfoot+[eMax Prices].[Unit Cost]*cableconductor.[Neutral Multiplier];
They are obviously very similar, just a couple of changes as to where the data comes from. Still new to Access, is there some sort of "reset" I can place in between the two? Thanks in advance.