Hi, I am trying to create multiple outputs from one source file by filtering on 2 variables: STATE and PLAN. Basicaly I want to crate some kind of array or Do Loop statement to help me to generate 50 outputs, 1 for each state Here is what I have for one STATE and Plan: Data TX_A; Set Work.ratechag_test; Keep State Plan Ratestru Date RatChang; Where State = 'TX' and Plan = 'A'; --> Want to change it to 2 variables and loop through differnet state and plans Run; PROC Export Data = WORK.TX_A anyone can help? Thanks!
... View more