
How to get the line numbers in SAS Enterprise editor?
May 10, 2021 · DATA Step, Macro, Functions and more Home Programming Programming How to get the line numbers in SAS Enterprise editor?
SAS Innovate 2026 - SAS Support Communities
Nov 17, 2025 · Industry Transformation: Real-world case studies show SAS solutions driving measurable impact in banking, healthcare, manufacturing, public sector, and retail. User …
No errors but can't see the output after running the code
Feb 24, 2019 · Hi, I am new to SAS. I am trying to learn the basics. I am going through the fundamentals. My question is that I cannot seem to see the output after running my code. There are …
Getting all duplicates within a SAS data set
Jan 29, 2015 · This article shows various techniques to find and reduce the number of duplicate observations in a SAS data set.
Finding out formats associated with each variable - SAS Communities
Jan 9, 2017 · I have a dataset with more than 200 variables and as many user-defined formats (I have a separate sas file with the formats). Each variable is associated with a separate format. I need to find …
Solved: Is it possible to get Proc Freq to display ... - SAS Communities
Aug 29, 2024 · I'm working with data that has millions of case IDs. As I apply various criteria to them, I want to know how many cases remain after each step. What I'm currently doing is using PROC SQL …
list all the tables in the library - SAS Communities
Dec 18, 2018 · I am using SAS EG, Library A is assigned, I have access to all the tables under Library A say table1, table2, table3 ---> table10. However, when you expand Library A, it only shows table1 …
List All Macro Variables Created - SAS Communities
Aug 26, 2013 · proc sql; select * from dictionary.macros; quit; Will show all of the macro variables. Add an appropriate where to look for Name starting with "month" should get you there.
Extract Errors and Warnings from log - SAS Support Communities
Sep 1, 2016 · I'm trying to extract errors and warnings from the log file. There are a lot of options to suppress messages, but I want both the full log as the warnings/errors. Obviously I could run some …
Show result numbers with two decimal places - SAS Communities
Jan 20, 2022 · I would like to show in the final table that I export to Excel numbers that have 2 decimal places, not 6 or 7. I tried by sum(a.EXP_PIERWOTNA_NETTO) as EAD_PRE_CCF format …