I admit I am a newbie. I have the following trigger working just fine to add a new record into another table but I am stuck on how to add one condition. I want this trigger to fire only if the column SSEP=True in the dbo.patient table.How would I add this to this trigger?Thank you!USE [USMON]GO/****** Object: Trigger [dbo].[Create_New_Ssep_Rec] Script Date: 09/01/2009 19:20:48 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOALTER TRIGGER [dbo].[Create_New_Ssep_Rec]ON [dbo].[Patient]After INSERTASinsert dbo.SSEP_Result(Patient_ID)select DISTINCT Patient_ID from inserted iwhere not exists (select * from dbo.SSEP_Result where Patient_ID = i.Patient_ID)