Hi All,
I have created a Prompt to select a date range and assigned it to a program. I am now having trouble assigning the date prompts to the data Step.
This is my data step
Data Work.CLK_Farmers_Assistance_Hotline;
Set CARTEL.Preagent_Telephony;
Keep Event_DT QUEUE_CD QUEUE Calls_entered_cnt calls_ANswered_CNT calls_abandoned_cnt Total_answer_tm;
Where QUEUE_CD in ('NAT_DRA' 'CLK_RUDA_DROUGHTASSIST')
and EVENT_DT = '&Date_Range_Min' and EVENT_DT <='&Date_Range_Max';
Run;
I need to assign the date prompts to EVENT_DT.
I select dates from the prompt and when the rest of the code runs I get the following error.
37 and EVENT_DT = '&Date_Range_Min' and EVENT_DT <='&Date_Range_Max';
ERROR: WHERE clause operator requires compatible variables.
Have I used the correct code to use the selected dates form the prompt? What do i need to change it to if I haven't?
Thanks in advance
Fixed
Didn't realise I had left off the & in the code:
and EVENT_DT bewteen "&Date_Prompt_Min."d and "&Date_Prompt_Max."d;
works now
Fixed
Didn't realise I had left off the & in the code:
and EVENT_DT bewteen "&Date_Prompt_Min."d and "&Date_Prompt_Max."d;
works now
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.
Early bird rate extended! Save $200 when you sign up by March 31.
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.