I have the following columns in the database. AgreedStartDate, ActualStartDate. I need to apply the following logic: When the AcualStartDate is within the SAME business week as the AgreedStartDate, then it is ‘inside’ the SLA. If this is not the case then it is ‘outside’ the SLA. If either of the two columns is NULL, then it is ‘incomplete’.
I have the following columns in the database. AgreedStartDate, ActualStartDate. I need to apply
Share
A simple CASE statement? You don’t need to use variables, you can just reference your column names instead. I just used variables for a complete statement.