Forum Discussion
AlexeyKolosov
Staff
16 years agoHi,
Replace the following line in the createInfo function:
var rowObj = oSheet.Rows.Item(rowId);
with the line below:
var rowObj = oSheet.UsedRange.Rows.Item(rowId);
Tell us whether it works.
Hi,
Replace the following line in the createInfo function:
var rowObj = oSheet.Rows.Item(rowId);
with the line below:
var rowObj = oSheet.UsedRange.Rows.Item(rowId);
Tell us whether it works.