For a project of mine I need to get the cell address of the cell a user chooses as source for the argument for my function:
Public Function ItemNumber(AnyValueFromAnyCell) As String
End Sub
If the user selects, say, cell F6 as the source for "AnyValueFromAnyCell" when using the function, I need its address to also manipulate that cell.
The idea is that if someone uses my new function, the function changes the fillcolour from the source cell too.
I hope this is clear enough.