尝试使用由单元格值创建的范围来复制和粘贴VBA

时间:2017-10-12 17:07:54

标签: excel vba excel-vba

每次尝试单步执行此操作时,都会出现语法错误,我不知道原因。我正在尝试创建一个变量,因此我可以根据“转换”表单上“M1”单元格中的值选择一系列单元格。

Sheets("transform").Select
Dim variableRange As Integer
    variableRange = ActiveSheet.Range.("M1").Value

这似乎是非常基本的东西 - 我仍在尝试了解VBA,我感谢任何帮助。

1 个答案:

答案 0 :(得分:2)

你在这里有一段额外的时间。应该是:

/*NUMPY_API
 *
 * Search the sorted array op1 for the location of the items in op2. The
 * result is an array of indexes, one for each element in op2, such that if
 * the item were to be inserted in op1 just before that index the array
 * would still be in sorted order.
...
NPY_NO_EXPORT PyObject *
PyArray_SearchSorted(PyArrayObject *op1, PyObject *op2,
                     NPY_SEARCHSIDE side, PyObject *perm)
{
...