Passing cell references to spreadsheet functions

前端 未结 3 1534
误落风尘
误落风尘 2020-11-29 09:15

When I call a spreadsheet function, say int(f2), the function operates on the value in the cell. If cell(\"F2\") contains 3.14159, the result would

3条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-29 10:05

    When you pass a range to a custom function the parameter is of type Range, which you can then use the fetch the values, etc.

    Edit: This in incorrect.

提交回复
热议问题