I'm trying to modify an old Access query to work in Alteryx. The original query has an option to enter date criteria before it runs. I considered using some other Alteryx tools to accomplish this, but the size of the dataset is prohibitively large to run on my machine if I filter for the dates after bringing in the data. It appears to be having some trouble around the INTO and BETWEEN operators.
SELECT Table A.date, Table A.Office, etc....INTO [Report Name]
FROM Table A Inner Join Table B etc...
WHERE(((Table A.date) Between [start date] And [end date]));
If anyone can help or knows of an alternative, that would be super-helpful
Thanks!