Is there a way to write a value to a sheet in a workbook without actually opening the workbook? What I mean is: using a macro from a open workbook, is it possible to write something in a sheet from another workbook without opening that workbook? I thought I read a post somewhere dealing with this.
I have a template with – on a hidden sheet – the values of a standard series that I use for fitting a calibration curve. I want the user to have the possibility to change the values of the standard series. But I want him/her to have the possibility to change it in the template from the open workbook generated from that template. I hope I am clear enough? I tried to do that with Workbooks(“Fit.xlt”).Open Editable:=True and then do the changes and then use Workbooks(“Fit.xlt”).Close.