About 348,000 results
Open links in new tab
  1. How to concatenate values in SAS - SAS Support Communities

    Sep 10, 2018 · Use CATX function to create a character string that combines multiple values and separates them with a delimiter of one or more characters. Like the CATS function, CATX …

  2. Solved: Using a catx statement - SAS Support Communities

    Feb 22, 2017 · Solved: I am trying to combine site and patient with a hyphen in between the two variables, using the catx function. When I run this below, it ONLY

  3. Solved: CATX - SAS Support Communities

    Jan 4, 2022 · Vector=CATX('-',OF X:); Run; options missing='.'; You get all the - in your result because, as correctly stated by @yabwon the implicit conversion to the dot character for …

  4. Solved: Bufsize for long concatination - SAS Communities

    Dec 9, 2024 · Solved: Hello, We would like to use CATX for concatenation of 30 words, each word has about 32 characters. The input SAS file matrix has col1, col2

  5. using Catx in for combining TWO macro variables

    Jan 11, 2017 · using Catx in for combining TWO macro variables Posted 01-11-2017 12:56 AM (26424 views) Hi, I have my program as %let date=26Jan2017; %let time=0012; %let dattt= …

  6. CATX function buffer always truncated to 16 - SAS Communities

    Mar 16, 2018 · ; I have this error: In a call to the CATX function, the buffer allocated for the result was not long enough to contain the concatenation of all the arguments. The correct result …

  7. Concatenate character variables with CATX - SAS Communities

    Mar 6, 2014 · Hi, I'm stuck while using CATX function. I have thirty string variable(COL1 to COL30) and i want to join this all variable separeated by comma by using CATX. It doesnt …

  8. Solved: CATX in %SYSFUNC - SAS Support Communities

    Mar 21, 2013 · DATA Step, Macro, Functions and more Home Programming Programming CATX in %SYSFUNC Options Bookmark Subscribe RSS Feed All forum topics Previous Next

  9. Concat with catx don't works , my string value to large

    Jul 18, 2024 · DATA Step, Macro, Functions and more Home Programming Programming Concat with catx don't works , my string value to large Options Bookmark Subscribe RSS Feed All …

  10. Solved: concatenate non missing values - SAS Communities

    Jul 12, 2017 · The CATX function first copies item-1 to the result, omitting leading and trailing blanks. Then for each subsequent argument item-i, i=2, …, n, if item-i contains at least one …