Search the Community
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
2,328 results
Sorted by:
01-20-2021
06:55 PM
I would like to add a total row to my table. Here is what I have: Gender Freq Percent Males 20 25% Females 60 75% Here is what I'd l...
03-30-2020
06:40 PM
2 Likes
...ou can also create custom measures to calculate a Percent of Total at both the row and column level when using a crosstab object.
The following examples walk through using a crosstab o...
- Find more articles tagged with:
- GEL
08-29-2024
01:13 PM
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 to get a cou...
02-11-2020
01:30 AM
Hello
I wan to add Total row under each score and also grand total row.
So there will be extra 3 total rows (one for score 'a' , second for score 'b' and 3rd for grand total
What is the w...
11-04-2022
02:22 PM
Can anyone offer a suggestion on how NOT to sum my percentages in last row?(Visual velow code) I need to divide the Total YTD "YOY Difference" by the Total YTD "AEP Sales 2022" rather than summing p...
11-22-2021
11:15 PM
I have a simple code that creates this output but I need the total. Is there a way to get that added?
Ethnicity Clients A 2822 B 929 C 383 D 471 E 179
Total 4784
proc s...
06-28-2020
03:17 PM
...alculation that takes the "Failed" value and divides it by the "Passed" value in the attached document for each semester (fall and spring) down the column. In other words each row should have a percent for e...
09-27-2023
03:58 AM
...hange on these date. For dates with changes, I took the number from the last date (male_dirs/female_dirs) and added/deducted the current change (male_dirs_ann/female_dirs_ann). Row 2: total_male = 7 + 1...
11-27-2018
02:15 PM
Hi everyone, I want to transform the Table-1 to the Table-2. In “Proc Tabulate”, I cannot calculate to the percentages in the TOTAL row. Is there any simple solution for that? Thanks in advance....
05-20-2020
01:44 AM
...ummary_One out= summary_first (drop = _Name_) ; BY Plan_type ; id Date ; var CREDIT_AMT ; run; This is what I want, to add a new row "Total" - summing the total of the 2 rows......
Show results in replies (3)
-
...erfectly. I made one small change to get the "Total" to the top row : 1) rbreak after => rbreak b...
-
....50 $10.36 $1.00 $18.17 ; run; /**** Grand total as summary row in a report*/ proc print data=s...
-
...um ''; rbreak after / summarize; compute after; if PLAN_TYPE = "" then PLAN_TYPE = 'Total'; e...