C
Chris
I'm inserting a custom user defined function into a cell.
As a parameter to the function is a cell which is the cell in which
the function is located
i.e.
in cell A5 I have the following function
=myCustomFunction(A5)
Now, I want to insert this function automatically into that cell but
the way I have that cell refrenced is in terms of Rows and Columns,
that is A5 = Row 5 Column 1
Is there a way I can do this
Cells(5,1) = "=myCustomFunction("& 'convert Row 5 Column 1 to A5
somehow' & ")"
As a parameter to the function is a cell which is the cell in which
the function is located
i.e.
in cell A5 I have the following function
=myCustomFunction(A5)
Now, I want to insert this function automatically into that cell but
the way I have that cell refrenced is in terms of Rows and Columns,
that is A5 = Row 5 Column 1
Is there a way I can do this
Cells(5,1) = "=myCustomFunction("& 'convert Row 5 Column 1 to A5
somehow' & ")"