I am working on creating a simple Analytics App for our Leadership to run on their own without my Data Team having to run a new SQL Query for them each time. The SQL Query is as below:
SELECT SO.*, SOD.* FROM dbo.SystemOrderDetail SOD With(NoLock)
LEFT JOIN dbo.SystemOrder SO With(NoLock) on SOD.SystemOrderID = SO.SystemOrderID
WHERE SOD.CreateDate > '05/30/2021'
AND (SOD.[Description] LIKE '%Lively Flip Open%' OR SOD.[Description] LIKE '%Lively Smart Open%')
I want to use the Interface Date Tool to replace the date within:
WHERE SOD.CreateDate > '05/30/2021'
I have been unable to make this work either through Value or Formula replacement. Interface Date Tool input is attached.