Hi, Thanks for your feedback. I've tried using: Code data test; infile datalines; input year case n; output test; datalines; 2000 100 50000 2005 75 60000 2010 50 75000; run; data test; set test; perc=round(((case/n)*100),0.01); run; proc freq data = test; table perc*year / exact trend; run; The p-value that I'm looking for seems to be the Mantel-Haenszel Chi-Square in the output (attached). I'm curious as to why the p-value using the proc genmod is significant while the p-value from the proc freq is not: Code: data test(keep=year case log_n); infile datalines; input year case n; log_n=log(n); output test; datalines; 2000 100 50000 2005 75 60000 2010 50 75000 ; run; proc genmod data=test; model case=year / dist=poisson link=log offset=log_n; run; SAS Output for proc genmod attached. Do you have any idea why the p-values are different? I would like to be sure which one is correct to use / what the correct interpretation is. Thanks, Jane Proc freq Proc genmod
... View more