Wolfie7873
Technical User
I have a macro function that returns a letter based on the row of the cell. This function exists in several cells. Currently, I am retrieving the row by
The problem with that is that when I recalculate the sheet, all the letters will depend on the active cell, not the individual cells where the calculations take place. How do I retrieve not the active cell, but the cell being calculated?
Code:
row = ActiveCell.row
The problem with that is that when I recalculate the sheet, all the letters will depend on the active cell, not the individual cells where the calculations take place. How do I retrieve not the active cell, but the cell being calculated?