hi everyone,
PROC SQL NOEXEC;
SELECT (MAX(CASE WHEN(d1= 'C' AND d2= 'X')
THEN sutun1||' '||sutun2 ELSE ' ' END)) AS CALCULATION
FROM BB2.Ott t1;
QUIT;
ERROR: Concatenation (||) requires character operands.
what's my fault?
thaks 🙂
Exactly what it says, your variables should be character but they're numeric.
You can use CATX instead, but it converts numbers using the BEST format so verify it gives you what you want.
What is it your actually trying to do as there are various issues with your code. First, you have the problem as given by @Reeza, you are concatenating (a string function) numeric variables. Secondly, you are max()ing (a numeric function) on character data.
Provide a small bit of test data and show what you want out, maybe something like:
proc sql noexec; select max(coalesce(SUTUN1,SUTUN2)) as CALCULATION from (select * from BB2.OTT where D1="C" and D2="X"); quit;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.