golden-berg
New Member
After multiple fruitless searches I'm turning to the experts.
I'm using Excel 2016 32-bit stand-alone (not 365)
I have a table with snippets of formulas, which I'd like to access through a lookup formula in order to construct larger formulas.
In the spreadsheet attached, tab "Table" has the formula snippets while tab "usage" has the XLOOKUP areas and data. Using the VBA
>>> use code - tags <<<
I'm showing that I have a solution for the simplest of snippets, but how do I create and retrieve snippets such as those shown in column "What I need to see" - note that, for instance, for (g4-j4)-h4 the number corresponds to the row that it's on, etc.
Thanks very much for any guidance.
I'm using Excel 2016 32-bit stand-alone (not 365)
I have a table with snippets of formulas, which I'd like to access through a lookup formula in order to construct larger formulas.
In the spreadsheet attached, tab "Table" has the formula snippets while tab "usage" has the XLOOKUP areas and data. Using the VBA
>>> use code - tags <<<
Code:
Function Eval(strTextString As String)
Application.Volatile
Eval = Evaluate(strTextString)
End Function
I'm showing that I have a solution for the simplest of snippets, but how do I create and retrieve snippets such as those shown in column "What I need to see" - note that, for instance, for (g4-j4)-h4 the number corresponds to the row that it's on, etc.
Thanks very much for any guidance.
Attachments
Last edited by a moderator: