09-01-2015
ChandraReddy
Calcite | Level 5
Member since
02-18-2013
- 7 Posts
- 0 Likes Given
- 0 Solutions
- 3 Likes Received
-
Latest posts by ChandraReddy
Subject Views Posted 1239 04-26-2013 05:32 PM 1239 04-26-2013 05:26 PM 472 03-28-2013 05:38 PM 853 03-01-2013 02:33 AM 952 02-28-2013 08:31 PM -
Activity Feed for ChandraReddy
- Got a Like for Re: How to make a new dataset which will be having only distict values of required variables from a dataset?. 09-01-2015 04:24 AM
- Posted Re: Join on Very long comment data? on SAS Programming. 04-26-2013 05:32 PM
- Posted Re: How to make a new dataset which will be having only distict values of required variables from a dataset? on SAS Programming. 04-26-2013 05:26 PM
- Posted Re: by group on SAS Programming. 03-28-2013 05:38 PM
- Posted Re: How to decrease Processing time while generating PDF and RTF documents? on ODS and Base Reporting. 03-01-2013 02:33 AM
- Posted How to decrease Processing time while generating PDF and RTF documents? on ODS and Base Reporting. 02-28-2013 08:31 PM
-
My Liked Posts
Subject Likes Posted 3 04-26-2013 05:26 PM
04-26-2013
05:32 PM
I would recommend to create a temporary numeric variable which may contain unique number for each unique answer. You may start using the new numeric variable instead of charcater variable!!
... View more
04-26-2013
05:26 PM
3 Likes
To get distinct varibale values, you may try the simple code: Proc sql; select distinct var1,var2,var3,var4,var5,var6 from dset1 where condt1; quit;
... View more
03-28-2013
05:38 PM
Hi, Try the below code: data table; set table; by customer_id product_id; run; data table2; set table; by customer_id product_id; if first.customer_id then final_product = product_id; else do; retain final_product; final_product = catx(',',final_product,product_id); end; if last.customer_id; run; ... Chandra
... View more
03-01-2013
02:33 AM
Thank you Cynthia for your advise, You are right I am using ODS TAGSETS.RTF instead of ODS RTF, will contact the Tech Support team. Thanks, Chandra
... View more
02-28-2013
08:31 PM
Hi, General question related to processing time: We have a report macro that uses ODS RTF to generates a listing report in RTF document, recently we updated the macro to generate RTF as well as PDF documents using ODS Tagsets. Macro is running fine and is generating both PDF and RTF reports with expected results, but the problem comes with processing time, the updated macro takes as much as 3 times the normal time to generate same report which not not effective, especially, when running bigger reports with 2000 pages. I am trying to findout the reason why the updated macro is taking longer time, I am thinking it's because of using ODS Tagsets. Did anyone faced similar problem before? Thanks Inadvance, Chandra
... View more