I've attached an access mdb with a query which should do what you want - provided I understood correctly 🙂
Have a copy of your table before attempting the update query - suggest you import it into the attached database and name the table 'sic', replacing the small one already there.
hth
(Apologies to PHP users for being OT, but if anyone is interested, the query contained in the file is
UPDATE Sic INNER JOIN Sic AS Sic_1 ON (Sic.var_code = Sic_1.var_code)
AND (Sic.fip_code = Sic_1.fip_code) SET Sic.[1975_supr] = [Sic_1].[1975_supr], Sic.bls1975 = [Sic_1].[bls1975]
WHERE (((Sic.[1975_supr]) Is Null)
AND ((Sic.sic)=1) AND ((Sic_1.sic)=2))
)