Hello, good afternoon, I would like to ask for a little help with something. In the Guide server we have several tables listed by years, I have a process which analyzes the tables but what I want to achieve is that the user selects the year with a prompt and executes the analysis qwerys.
These are examples with the names of the tables that I have.
table2018
table2019
table2020
thanks for your time.
Hi,
Here is a qwery, text in red I would like it to be variable by year in the FROM. if the person enters 2020 take the table TABLE2020, if the person enters 2019 that take the table TABLE2019
PROC SQL;
CREATE TABLE WORK.QUERY_TABLETEST AS
SELECT t1.Ano,
(INPUT(t1.IdComuna,BEST32.)) AS ID_COMUNA
(SUM(t1.Col01 - t1.Col04 - t1.Col05 )) AS TOTAL
FROM TABLE2020 t1
GROUP BY
t1.Ano,
t1.IdComuna;
QUIT;
maybe I could explain myself better
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.