Hi,
I'm trying to create a query within a dynamic subscription with a parameter for a Start and End Date.
The query will not validate when I try to use @StartDate and @EndDate
Something like:
WILL VALIDATE --- Select ID from mytable where date between '10/1/23' and '10/31/23'
Once I change the date to Parameters it won't validate
WILL NOT VALIDATE --- Select ID from mytable where date between @StartDate and @EndDate
The parameters are in the main report
Thanks
Joe