I dont want to use Proc SQL in my program.
I am trying to calculate a new column (Acc) with the count of all variables. pin_id1 is numeric.
data test.id;
set test.data ;
Acc= count(pin_id1,pin_id1,pin_id3);
run;
ERROR 72-185: The COUNT function call has too many arguments.
NOTE: Numeric values have been converted to character values at the places given by: (Line):(Column).
25:12 25:20 25:28 25:36 25:44
NOTE: The SAS System stopped processing this step because of errors.
Output like:
pin_id1 pin_id2 Pin_id3 Acc
235 465 987 3
223 777 2
COUNT is not the proper function to use in this case.
You want to use the N function
acc=n(pin_id1,pin_id2,pin_id3);
COUNT is not the proper function to use in this case.
You want to use the N function
acc=n(pin_id1,pin_id2,pin_id3);
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.