12-23-2019
atran2
Fluorite | Level 6
Member since
12-11-2019
- 4 Posts
- 0 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by atran2
Subject Views Posted 2860 12-18-2019 06:50 PM 2894 12-18-2019 03:40 PM 1157 12-12-2019 04:37 PM 1187 12-12-2019 01:51 PM -
Activity Feed for atran2
- Posted Re: SUM function doesn't work on a basic CASE statement output? on SAS Enterprise Guide. 12-18-2019 06:50 PM
- Posted SUM function doesn't work on a basic CASE statement output? on SAS Enterprise Guide. 12-18-2019 03:40 PM
- Posted Re: How can I dump a SAS dataset in EG into an existing .xlsx workbook, located on Windows S: Drive? on SAS Enterprise Guide. 12-12-2019 04:37 PM
- Posted How can I dump a SAS dataset in EG into an existing .xlsx workbook, located on Windows S: Drive? on SAS Enterprise Guide. 12-12-2019 01:51 PM
- Tagged How can I dump a SAS dataset in EG into an existing .xlsx workbook, located on Windows S: Drive? on SAS Enterprise Guide. 12-12-2019 01:51 PM
- Tagged How can I dump a SAS dataset in EG into an existing .xlsx workbook, located on Windows S: Drive? on SAS Enterprise Guide. 12-12-2019 01:51 PM
- Tagged How can I dump a SAS dataset in EG into an existing .xlsx workbook, located on Windows S: Drive? on SAS Enterprise Guide. 12-12-2019 01:51 PM
- Tagged How can I dump a SAS dataset in EG into an existing .xlsx workbook, located on Windows S: Drive? on SAS Enterprise Guide. 12-12-2019 01:51 PM
12-18-2019
06:50 PM
Hey you are totally right, which I eventually realized, but still don't know how to get around this since the only way I can think of getting 'DC Term'n is via the sum, which leaves me with a nested sum which PROC SQL seems to dislike. This is the code from 'DC Term'n: SUM(CASE WHEN 'FAC Type'n = "DC"
THEN GN.Principal
ELSE 0
END) AS 'DC Term'n So currently it seems that what I am basically asking PROC SQL to do is: SUM(CASE WHEN 'AoE'n = "BAG"
THEN GN.Principal * SUM(CASE WHEN 'FAC Type'n = "DC" THEN GN.Principal ELSE 0 END)
ELSE GN.Principal * GN.'FAC Term'n
END) AS 'FTP LP Y'n and clearly PROC SQL/SAS does not like that. How would I get around this?
... View more
12-18-2019
03:40 PM
Hi folks, I have this SUM function that is giving me the error message: ERROR: Summary functions nested in this way are not supported. The block of PROC SQL code that is giving me trouble looks like this: SUM(CASE
WHEN 'AoE'n = "BAG"
THEN (GN.Principal * CALCULATED 'DC Term'n)
ELSE (GN.Principal * GN.'FAC Term'n)
END) AS 'FTP LP Y'n When I execute the code without the SUM(), it works and shows all values in the column (calculated from other values). What I need to do is SUM all the values in that column into a singular cell....What is odd to me is that when I used SUM() here, it does work, which I am using in an earlier portion of my PROC SQL code and it looks like this: SUM(CASE
WHEN 'FAC Type'n = "DC"
THEN (GN.Principal * GN.'FAC Term'n)
ELSE 0
END)
/
SUM(CASE
WHEN 'FAC Type'n = "DC"
THEN GN.Principal
ELSE 0
END) AS 'DC Term'n, I can't seem to figure out the differences in syntax between the two blocks of code. Does anyone have any ideas why I might be getting this error?
... View more
12-12-2019
04:37 PM
Hey, I might be able to get the data as .csv but part of the challenge is there is some components of the process which rely on Bloomberg add-in for Excel, which we can't get that type of functionality elsewhere. As a result, the most "lean" we can get is a single Excel sheet with a bunch of cells pulling Bloomberg data and using that as an input for further calculation.
... View more
12-12-2019
01:51 PM
Hi folks, I'm newer to SAS and basically I'm looking to automate some Excel tasks. The current process looks like this: Data team sends us a data extract via .xlsx (they auto-drop it into the same Google Drive shared folder everyday at a specific time) We copy and paste the data from that .xlsx workbook to an "intermediary workbook", which contain various Excel formulae that perform further calculations on the data and structures it in the right way for SAP to easily ingest (next step). We take the output of the intermediary workbook and paste it into the final macro-enabled workbook. This workbook has macros which create a .csv copy of the data we pasted in initially and drop it to a specific filepath location on our Shared Network Drive, which SAP automatically ingests as an end of day process, which updates the respective data in SAP. What I would like to do is: Use SAS to ingest the initial .xlsx data file Replace the "intermediary" workbook by replicating the Excel formulaic calculations in SAS Replace the final macro-enabled workbook by pushing the .csv output file to a specific Windows S: Drive file location. My only challenge right now is that I'm essentially using SAS Enterprise Guide for a task that isn't a super common use-case. The intention however is to reduce human error that comes with copy/paste activities, as well as streamline the process into one comprehensive SAS program with an audit trail of what the program is doing each day rather than leave it up to a spreadsheet tool to do it. What are your guys thoughts as to how feasible this is and how would I get started at a high level to accomplish this? What I figured would be a good first step is to simply grab the .xlsx file from Google Drive, then paste it into the existing "Intermediary Workbook" and then pick up the output and paste it into the "final macro workbook", basically replacing only the human steps. The next step after that would be to try to tackle the actual Excel workbooks themselves and see if we can replicate the functionality of that intermediary workbook.
... View more