09-01-2015
AshokDatti
Calcite | Level 5
Member since
02-25-2013
- 7 Posts
- 12 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by AshokDatti
Subject Views Posted 1015 09-08-2013 05:52 AM 3841 08-21-2013 12:15 PM 2446 08-06-2013 10:22 AM 2446 08-06-2013 10:06 AM 2556 08-06-2013 07:20 AM 1515 06-24-2013 06:34 AM 1664 06-24-2013 05:56 AM -
Activity Feed for AshokDatti
- Posted Is there anyway to read any type of xml file irrespective of the tags. Or do we need .xsd file for it?? on ODS and Base Reporting. 09-08-2013 05:52 AM
- Liked Re: Can Libname statement read the datasets which are named in capital letters/upcase on Unix? for LarryWorley. 08-22-2013 02:01 AM
- Liked Re: Can Libname statement read the datasets which are named in capital letters/upcase on Unix? for LarryWorley. 08-22-2013 02:01 AM
- Liked Re: Can Libname statement read the datasets which are named in capital letters/upcase on Unix? for jakarman. 08-22-2013 02:01 AM
- Liked Re: Can Libname statement read the datasets which are named in capital letters/upcase on Unix? for Tom. 08-22-2013 02:01 AM
- Liked Re: Can Libname statement read the datasets which are named in capital letters/upcase on Unix? for PGStats. 08-22-2013 02:01 AM
- Liked Re: Can Libname statement read the datasets which are named in capital letters/upcase on Unix? for OS2Rules. 08-22-2013 02:01 AM
- Liked Re: Can Libname statement read the datasets which are named in capital letters/upcase on Unix? for LarryWorley. 08-22-2013 02:01 AM
- Liked Re: Can Libname statement read the datasets which are named in capital letters/upcase on Unix? for jakarman. 08-22-2013 02:01 AM
- Liked Re: Can Libname statement read the datasets which are named in capital letters/upcase on Unix? for jakarman. 08-22-2013 02:01 AM
- Posted Can Libname statement read the datasets which are named in capital letters/upcase on Unix? on SAS Programming. 08-21-2013 12:15 PM
- Posted Re: How to get uniform width across tables in a report which are printed on a single page using ods pdf and proc report on SAS Procedures. 08-06-2013 10:22 AM
- Liked Re: How to get uniform width across tables in a report which are printed on a single page using ods pdf and proc report for Vince28_Statcan. 08-06-2013 10:20 AM
- Posted Re: How to get uniform width across tables in a report which are printed on a single page using ods pdf and proc report on SAS Procedures. 08-06-2013 10:06 AM
- Posted How to get uniform width across tables in a report which are printed on a single page using ods pdf and proc report on SAS Procedures. 08-06-2013 07:20 AM
- Posted Re: Reading period from a delimited file using Char$ informat on SAS Procedures. 06-24-2013 06:34 AM
- Liked Re: Reading period from a delimited file using Char$ informat for Ksharp. 06-24-2013 06:33 AM
- Liked Re: Reading period from a delimited file using Char$ informat for data_null__. 06-24-2013 06:33 AM
- Posted Reading period from a delimited file using Char$ informat on SAS Procedures. 06-24-2013 05:56 AM
-
Posts I Liked
Subject Likes Author Latest Post 1 1 1 1 1
09-08-2013
05:52 AM
Hello Everyone, Can I read a .xml file by using a libname statement. Or are there any restrictions for it? And do I need a .xsd file for reading an xml?? Similarly can I write a dataset's metadata as well as data into a xml file? Is there any procedure for it? Please help me out.
... View more
08-21-2013
12:15 PM
Hi, I am working on Unix environment and have been trying to read copy the data-sets from a particular library to work. But while executing the below statement I am able to copy the data-sets which are in lower case. And the data-sets in upper case are not moved to work library. Proc copy in=mylib out=work;run; Is there any option to read such data-sets?
... View more
08-06-2013
10:22 AM
Hey Vince, Thank You so much. I solved it. Actually along with those two variables, I am using a grouping variable too but I am not printing it onto the report. I think it is creating a problem. I have adjusted the width to 49.5% each and it worked. Thanks, Ashok
... View more
08-06-2013
10:06 AM
Hi Vince, Thank You for your response. I tried giving 50% for both the variables and this is my result.
... View more
08-06-2013
07:20 AM
Hi Everyone, I have a single dataset, based on a where condition I am dividing that dataset into multiple views and then I am printing the output in a single page as shown in the figure. %DO Loop for Multiple conditions; proc report data=Abc(where=(variable="&Some_condition")) style(header)=[just=c fontsize=0.15in] style(column)=[just=l fontsize=0.12in] style(REPORT)= [width=100%] nowd; column(codeval decod); define codeval/"Code Value" left flow width=20; define decod/"Code Text" left flow width=20; run; %END; But the width is not uniform through out. It is changing everytime. Am I missing something. Please help me out.
... View more
06-24-2013
05:56 AM
Hi Everyone, I want to read a pipe-delimited file which consists of some values as dots. Ex : Var1|Var2|Var3 a |b |c d |. |e . |f |g I have written the following program data dummy; infile "path\file.csv" dsd dlm="|" truncover LRECL=32767; input var1 $char10. var2 $char10. var3 $char10.; if _n_ = 1 then delete; run; But it is not working as expected. Can anyone please help me out. $char is considering default delimter as space. Can't we provide our own delimter?
... View more