Hi, I created this proc report, and I have a problem because the gplot that insert goes in firts page of the BY and then put the table. T'his report is in ods pdf, and the bookmark is in gplot. I need put the table first and then de gplot proc report data=meses contents=''; title "CUOTA POR MESES" ; title2 '#byval1'; by REGION; column CADENAS &ano3. Enero Febrero Marzo Abril Mayo Junio Julio Agosto Septiembre Octubre Noviembre Diciembre REGION; FORMAT &ano3. Enero Febrero Marzo Abril Mayo Junio Julio Agosto Septiembre Octubre Noviembre Diciembre 5.1; LABEL Enero='ENE' Febrero='FEB' Marzo='MAR' Abril='ABR' Mayo='MAY' Junio='JUN' Julio='JUL' Agosto='AGO' Septiembre='SEP' Octubre='OCT' Noviembre='NOV' Diciembre='DIC'; define cadenas/display page contents='' ; define REGION /group noprint; break after REGION /contents='' page ; FORMAT REGION REGFMT.; compute cadenas; if cadenas in ("TVE", "Mediaset", "Grupo A3", "AUT", "AUT PRIV", "TEMATICAS PAGO" , "Otras Cadenas", "NO IDENTIFICADO" ) then call define(_row_,"style","style={background=AliceBlue}"); endcomp; compute before _page_ / style={background=CX0088EE foreground=black font_weight=bold}; if( region = 1 ) then call define( _ROW_, "GRSEG", "work.gseg.gchart" ); else if (region = 2 ) then call define( _ROW_, "GRSEG", "work.gseg.gchart1" ); endcomp; FOOTNOTE h=5pt f=arial 'COPYRIGHT KANTAR MEDIA'; run; I tray change compute before _page_ / for compute after _page_ / but it doesn't work Thanks
... View more