I have a series of different formulas which make use of the Indirect function, this works well when my spreadsheets are in daily use for logging and interpreting test data. I have two cells which are contain the row no's for the first and last cell of a range, and my indirect formulas look at these.
Example: =AVERAGE(INDIRECT("AP"&AT24):INDIRECT("AP"&AV24))
When the test comes to an end I would like to convert all my indirect references to direct with a macro. So if cell AT24 contained a value of 50, and cell AV24 contained a value of 100, then my final version should look like
=AVERAGE(AP50:AP100)
Can anyone tell me how to go about this, please?
Example: =AVERAGE(INDIRECT("AP"&AT24):INDIRECT("AP"&AV24))
When the test comes to an end I would like to convert all my indirect references to direct with a macro. So if cell AT24 contained a value of 50, and cell AV24 contained a value of 100, then my final version should look like
=AVERAGE(AP50:AP100)
Can anyone tell me how to go about this, please?