Populate field with another fields value conditionally

I want to populate the serial number field with the id field value but only if the part type column does not contain certain values. Any suggestions 

0 1 62
1 REPLY 1

You would insert into the App Formula property and expression like:

IF (NOT(IN(Part Type], {"Value 1", "Value 2", "Value 3", "Value 4",...})),
    [ID Field],
    ""
)

See these articles for more on the expression functions used above

IN() 

NOT()

IF()

Top Labels in this Space