Currently, we have an excel template that gathers input on customer credit lines and various pieces of collateral they pledge towards these credit lines. The template then displays this information in a grid/matrix type display, in the following manner:
What I would like to do is create some kind of grid/matrix to display the row headers and column headers from the input data. The user would have the ability to then put an "x" at the intersection of a given piece of collateral and credit loan (which indicates which pieces of collateral are associated with a given credit loan(s)). From there, I will need to perform numerous calculations based on the intersection of the two (row, column - indicated by the "x").
This was a natural fit for Excel, but there are limitations because the file gets too large. We are contemplating moving this to ASP.NET and I was looking for any advice or suggestions on how this may be setup.
Thanks in advance!
Joe
Code:
--------------------------------------------
Production fac1 fac2 fac3 fac4
--------------------------------------------
Collat 1 ckbx ckbx ckbx ckbx
Collat 2 ckbx ckbx ckbx ckbx
Collat 3 ckbx ckbx ckbx ckbx
Collat 4 ckbx ckbx ckbx ckbx
What I would like to do is create some kind of grid/matrix to display the row headers and column headers from the input data. The user would have the ability to then put an "x" at the intersection of a given piece of collateral and credit loan (which indicates which pieces of collateral are associated with a given credit loan(s)). From there, I will need to perform numerous calculations based on the intersection of the two (row, column - indicated by the "x").
This was a natural fit for Excel, but there are limitations because the file gets too large. We are contemplating moving this to ASP.NET and I was looking for any advice or suggestions on how this may be setup.
Thanks in advance!
Joe