BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Palucci
Fluorite | Level 6

i have a problem i chose data already and i would like to show them using a simple bar chart however. I totally don't do it.

my data:

Customer1Customer2
2377127636

my code :

proc sql; 
create table graphbar as
select ak.CUSTOMER1, wy.CUSTOMER2,
from(select sum(product) as CUSTOMER1, from sold ak
cross join 
(select sum(product) as CUSTOMER2 from buy wy
;
quit;

proc SGPLOT data = graphbar;
vbar CUSTOMER1;
vbar CUSTOMER2 ;

run;
quit;
1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
proc sql; 
create table graphbar as
select *
from
(select "Sold" as Type, sum(sold.product) as Total from sold)
union
(select "Buy" as Type, sum(buy.product) as Total from buy)
;
quit;

proc SGPLOT data = graphbar;
vbar Total / group=Type;
run;

run;
quit;

@Palucci wrote:

i have a problem i chose data already and i would like to show them using a simple bar chart however. I totally don't do it.

my data:

Customer1 Customer2
23771 27636

my code :

proc sql; 
create table graphbar as
select ak.CUSTOMER1, wy.CUSTOMER2,
from(select sum(product) as CUSTOMER1, from sold ak
cross join 
(select sum(product) as CUSTOMER2 from buy wy
;
quit;

proc SGPLOT data = graphbar;
vbar CUSTOMER1;
vbar CUSTOMER2 ;

run;
quit;

 

View solution in original post

2 REPLIES 2
Reeza
Super User
proc sql; 
create table graphbar as
select *
from
(select "Sold" as Type, sum(sold.product) as Total from sold)
union
(select "Buy" as Type, sum(buy.product) as Total from buy)
;
quit;

proc SGPLOT data = graphbar;
vbar Total / group=Type;
run;

run;
quit;

@Palucci wrote:

i have a problem i chose data already and i would like to show them using a simple bar chart however. I totally don't do it.

my data:

Customer1 Customer2
23771 27636

my code :

proc sql; 
create table graphbar as
select ak.CUSTOMER1, wy.CUSTOMER2,
from(select sum(product) as CUSTOMER1, from sold ak
cross join 
(select sum(product) as CUSTOMER2 from buy wy
;
quit;

proc SGPLOT data = graphbar;
vbar CUSTOMER1;
vbar CUSTOMER2 ;

run;
quit;

 

Palucci
Fluorite | Level 6

Hello Reeza, Thanks its working but my graph shown y=0,1 how to change it ? to for example 100 , 200, 300, 400 ?

Palucci_0-1636008617306.png

 

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

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!

Register now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1006 views
  • 1 like
  • 2 in conversation