I am using the xlwings library and I am creating custom UDF functions.
@xw.func
def hello(name):
return f"Hello {name}!{os.getcwd()}"
How can I get the row and the column of the cell where the function is called?
To clarify, I want to access the row and the column inside the function.