ThisCellプロパティで取得する
Function test() MyString = Application.ThisCell.Address(False, False, xlA1) test = "入力されているセルは、" & MyString & "です" End Function
Callerプロパティで取得する
Function test2() MyString = Application.Caller.Address(False, False, xlA1) test2 = "入力されているセルは、" & MyString & "です" End Function
ネタ元