I'm a new convert from Access and very green on EG. I'm trying a simple query formula where I need records from the past 60 days. The criteria in Access was simply Date()-60. What does the filter look like in a SAS EG query?
Almost identical:
Using the dataset SASHELP.STOCKS as an example:
1. Create a new query, select the variables you want.
2. On the filter tab, create a new filter, and select an advanced filter.
3. Your filter text should be something like
t1.Date >= (today() - 4501)
(this will select all the records with date later than Jan 1, 2005).
4. Next, then Finish
5. Run your query.
Make sure the integer you use gets you exactly the dates you want...testing is important!
Tom
Depends upon whether you are using the GUI. A youtube video shows various ways to select using the GUI: https://www.youtube.com/watch?v=rNseN9tGfwM
Otherwise, you may only need something like between today() and today()-60
Art, CEO, AnalystFinder.com
Almost identical:
Using the dataset SASHELP.STOCKS as an example:
1. Create a new query, select the variables you want.
2. On the filter tab, create a new filter, and select an advanced filter.
3. Your filter text should be something like
t1.Date >= (today() - 4501)
(this will select all the records with date later than Jan 1, 2005).
4. Next, then Finish
5. Run your query.
Make sure the integer you use gets you exactly the dates you want...testing is important!
Tom
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.