Ok i'm banging my head on the following. I have a lot of custom formulas I want to work with.
here is a simple function
Function easy()
easy = 2
End Function
here is some code that works
Sheets("execution").Cells(introw, 5).Value = easy
but I want to grab the function names from a spreadsheet and throw them in and have that evaluate.
Sheets("execution").Cells(introw, 5).Value=sheets("other").cells(1,1).value
this does not work
Sheets("execution").Cells(introw, 5).Value=evaluate(sheets("other").cells(1,1).value)
here is a simple function
Function easy()
easy = 2
End Function
here is some code that works
Sheets("execution").Cells(introw, 5).Value = easy
but I want to grab the function names from a spreadsheet and throw them in and have that evaluate.
Sheets("execution").Cells(introw, 5).Value=sheets("other").cells(1,1).value
this does not work
Sheets("execution").Cells(introw, 5).Value=evaluate(sheets("other").cells(1,1).value)