I want create a bar chart. After done set the Column to Chart, Sum of and run it. It show me an error "There were xxx midpoints generated from the data. Specify levels=all to display the graph. What the error is? Where I can set the levels=all? Please help.
Thanks.
What are yo using to create your chart? Are you on EG, or SAS UE or Visual Analytics?
Can you post generated code?
what does your data look like and what kind of chart are you trying to create?
I'm using EG. I wish to create a bar chart. The data has Customer Code, Month, Year and Sum Amount of particular Month Year. I wish to show in bar chart the total amount for each customer.
Below is the code generate by EG
PROC SQL;
CREATE VIEW WORK.SORTTempTableSorted AS
SELECT T.DebtorCode, T.SUM_of_Amount
FROM WORK.FILTER_FOR_APPEND_TABLE as T
;
QUIT;
Axis1
STYLE=1
WIDTH=1
MINOR=NONE
;
Axis2
STYLE=1
WIDTH=1
;
TITLE;
TITLE1 "Bar Chart";
FOOTNOTE;
FOOTNOTE1 "Generated by the SAS System (&_SASSERVERNAME, &SYSSCPL) on %TRIM(%QSYSFUNC(DATE(), NLDATE20.)) at %TRIM(%SYSFUNC(TIME(), TIMEAMPM12.))";
PROC GCHART DATA=WORK.SORTTempTableSorted
;
VBAR
DebtorCode
/
SUMVAR=SUM_of_Amount
CLIPREF
FRAME TYPE=SUM
COUTLINE=BLACK
RAXIS=AXIS1
MAXIS=AXIS2
I think you can add the 'levels=all' option after the '/' in the following code:
VBAR
DebtorCode
/
levels=all
SUMVAR=SUM_of_Amount
CLIPREF
FRAME TYPE=SUM
COUTLINE=BLACK
RAXIS=AXIS1
MAXIS=AXIS2
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.