hallo Philipp, thanks for your interest. The Beispiel Data is the following, and should be directly copied into your SAS session without any pb: data Beispiel(label='Beispiel'); input Structure:$35. Month:2. Anz:5.; /* Anz is a numeric value, actually */ datalines; Nord 1 250 South 1 305 Center 1 444 East 1 140 West 1 456 Nord 2 210 South 2 175 Center 1 413 East 2 199 West 2 302 Nord 3 150 South 3 405 Center 3 124 East 3 140 West 3 456 Nord 4 105 South 4 375 Center 4 145 East 4 240 West 4 159 ; run; This Dataset is only an exemple, my actual Dataset is a lot bigger, but for code testing purpose I wrote this one extra. YOu have 5 'Structure' items (Nord, SOuth, Center, East, West) 4 Months from 1 to 4 and a value Anz (=Anzahl) between 0 and 1000 for each Structre + Month. The desired pie displays in each Pie Sector a Structure for each month, and the size of the Pie sector is given by the Anz value: Anz /(Sum of Anz). Order of the months as in the group=monat option is perfectly fine. I hope it helps. The code I wrote after the DAtaset is giving a result where all sectors are of the same size, not displaying the size accordingly to the Anz /(Sum of Anz). That's the point I don't resolve myself. Don't know how to, although I checked many pie related tutorials / pages / doc. Thanks a lot, have a nice day, PY
... View more