trigger UpdateProduct on Product__c (before update) {
for(Product__c product : Trigger.New) {
Product__c oldProduct = Trigger.oldMap.get(product.id);
if (product.Status__c != oldProduct.Status__c ) {
product.Is_Updated__c = true;
}
}
}