I have a proprietary banking program that outputs reports in excel but I'm unable to do even basic calculations on the output. What I typically do is build all of my calculations into another excel file and always save the report generated with the same name. That way I can open my other file and it will perform all of the calculations. I just wanted to give a little back story so that it would be understood what I'm stuck working with.
Here is what I'm after:
Report Data:
Borrower Credit Scores: 702 716 690
Co-Borrower Credit Scores: 640 660 704
Custom Report:
Borrower Middle Score: 702
Co-Borrower Middle Score: 660
Decision Score: 660
Sometimes there will only be two scores and then the lower of the two would be used. The decision score is always the lower of the middle score result.
Also, could anyone critique my method for assigning a number code based on if a particular box contains a "Y"? I'm sure there has to be a more elegant approach.
Code: =IF([Book1.xlsx]Table!$AK$2="Y",1,IF([Book1.xlsx]Table!$AL$2="Y",2,IF([Book1.xlsx]Table!$AM$2="Y",3,IF([Book1.xlsx]Table!$AN$2="Y",4,IF([Book1.xlsx]Table!$AO$2="Y",5,IF([Book1.xlsx]Table!$AP$2="Y",6,IF([Book1.xlsx]Table!$AQ$2="Y",7)))))))
Thank you in advance for your efforts and giving freely to this community!
Bookmarks