If I am understanding you correctly....
make a new column next to that one. copy & special paste your calculated column to the new column, and in the special paste options only check "Values"
No, I want a formula solution that can take that "ADDRESS" result and convert it to text.
Actually, I think I didn't state this correctly. I want the result of the "ADDRESS" function to be made a cell reference by using a formula. Basically recreating the "Indirect" function without using "indirect". Is this possible?
Because you did not explain why indirect will not suite your needs, I recommend you use the indirect function.![]()
What are you trying to do with the result? Maybe post an example.
I really don't know what you are trying to accomplish, but will something like this work for you?
=SUM(INDIRECT(ADDRESS(3,2)),2)
I was trying to use it inside an ISBLANK function like this
=ISBLANK(ADDRESS($C12,$F$1))
You can put =ISBLANK($A$12) and it works but not using the ADDRESS function like I have. It seems like if you could strip off the double quotes of the ADDRESS result before it gets passed to ISBLANK it would work but I can't figure out a way to do that. I.e ADDRESS($C12,$F$1) returns "$A$12".
Function AddressBlankChecker(RowNum As Integer, ColmNum As Integer) As String
If ActiveSheet.Cells(RowNum, ColmNum) = "" Then
AddressBlankChecker = "True"
Else
AddressBlankChecker = "False"
End If
End Function