obscure wordpress plugin help request

I have an excel sheet that encompasses a price list for the company I work for. I need to find a wordpress plugin that allows it to be searchable by row and column along the lines of

select space in row 1 -> select space in column 1 -> select space in row 2 -> display price.

In real world use for me, it would look something like

select lens type -> select lens material -> select lens design -> display price.

I have an existing site that does this and looks like this:

This is the software interface I use at work that provides an even better layout:

Are there any plugins that can duplicate this? I’m migrating everything over to a wordpress setup, and this is a key part of the site. If I have to, I’ll continue to keep it as it is as a .net designed site, but a wordpress plugin would be ideal.

Please help.

I use wordpress a lot and have not see a plugin that will do this, but I will keep my eye out

Could you access the information via an ajax request from wordpress? Have the .net application spit back the data

If you didn’t mind it being Javascript powered you could probably write it rather easily with Jquery.. and drop it on a page in WordPress

Didn’t fill out all of the data array, but took a quick stab at writing your first setup in Javascript.. I think you could extend the data array as deep as you want to replicate something like you have in the screenshot/add more fields, etc.

You could have php/asp/whatever server side fill out the data array dynamically from a db if you wanted, then output to JS.

Didn’t fill out all of the data array, but took a quick stab at writing your first setup in Javascript.. I think you could extend the data array as deep as you want to replicate something like you have in the screenshot/add more fields, etc.

You could have php/asp/whatever server side fill out the data array dynamically from a db if you wanted, then output to JS.

I’ll look into this a bit more.

While a plugin that’s kinda "plug & play" would be ideal, this might be a very good second option.

Thanks to everyone.

But yeah thats possible with pretty much any language out there atm. Id drop it into mysql and use ajax/php to grab the info.