Hey I am working on a dataset in which I just want to print the total number of observation from a particular column how I can achieve this in proc report. like I have mentioning a sample code here. proc report data = shop; column name type products price; by type; define products/group; break after products/page; run; In this above example I just want to print the total number of products in each table, how can I do this help me / Thank You in advance.
... View more