Suppose I have this UDF defined in python v3.6 xlwings v0.11 to run on Excel 2016.
import xlwings as xw
@xw.func
def random_val(x):
import random
return random.random()*x
The UDF is imported into an Excel sheet which supports xlwings. I have tested that the formula =random_val(2)
at cell A1 works fine.
My question is how do I run this UDF at regular time interval of 1 minute so that the output is refreshed at cell A1 every minute.
This can be done easily through Macros.