我想知道,如何使数据仅在B9-B30行添加?这意味着如果有任何新数据-只能在B9-B30范围内添加。
这是我添加数据的代码。
'add the data to the selected worksheet
Set nextrow = Sheets(sht).Cells(Rows.Count, 2).End(xlUp).Offset(1, 0)
For X = 1 To cNum
nextrow = Me.txtName.Value
Set nextrow = nextrow.Offset(0, 1)
Next
我希望将其添加到b9行直到b30。现在,如果我添加新数据,请添加到最后一行。因此,here我附有图片,以便您可以看得更清楚。