首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 办公应用 > OFFICE教程 >

range.(""&cell).value值异常

2012-01-13 
range.(&cell).value值错误VBScript codePublic Function getdata(cell) As VariantSet getdata Sheet

range.(""&cell).value值错误

VBScript code
Public Function getdata(cell) As Variant    Set getdata = Sheet1.Range("" & cell).Value    End Function

getdata函数想要得到cell单元格的值,这么写对不?

[解决办法]
不知道你的参数cell是什么样的,range不能这样用.
假如你想取得A1单元格的值,可以有以下两种写法:
Range(Cells(1, 1), Cells(1, 1)).Value
Range("A1").Value

关键是看你的参数是什么样子的了
[解决办法]
Public Function getdata(cell as String) As Variant
getdata = Sheet1.Range(cell).Value
End Function

热点排行