In Excel, I use tables to store dynamic data inside a separate worksheet. However, entering new data works like a charm, however I would like to be able to dynamically extract one row from this table and store its data in variables. I would prefer to build a function so that I can do something like this:
findFromCatsByDate(searchterm) 'returns a single row if found with mathing date.
Note that the table is dynamic, not a fixed area (therefore, it changes vertically). I want to reuse this function with minor changes in other tables. I just need an example of how to achieve this in VBA.
Thank,
source
share