Hi all,
Finally, I have been able to update the parameter values by my VBA coding.
I changed the following lines:
' TODO: To be replaced (dates) by the value of an excel cell Call parameter.SetDateValue("01.01.2015", "0") ' Low value Call parameter.SetDateValue("31.01.2015", "1") ' High value
To:
Call Parameter.setSingleValue("01.01.2015", ParameterValueType_LOW) Call Parameter.setSingleValue("31.01.2015", ParameterValueType_HIGH)
Regards,
Kai