K
kelly
Hi, dear all
i write a funciton in vba and want to use it in excel sheet. the
script is like,
****************************************************************************************
Function sample(sheetname As Integer) As Integer
Dim R As Excel.Range
Dim c As Variant
sample = 0
For Each c In Worksheets(sheetname).Range("A1").CurrentRegion
If Right(c.Value, 1) = "*" Then
sample = 1
Exit Function
End If
Next
End Function
****************************************************************************************
When i type the formular in excel sheet, it can not work. the excel
version is 2000.
can anybody help me with this?
Thank you
Kelly
i write a funciton in vba and want to use it in excel sheet. the
script is like,
****************************************************************************************
Function sample(sheetname As Integer) As Integer
Dim R As Excel.Range
Dim c As Variant
sample = 0
For Each c In Worksheets(sheetname).Range("A1").CurrentRegion
If Right(c.Value, 1) = "*" Then
sample = 1
Exit Function
End If
Next
End Function
****************************************************************************************
When i type the formular in excel sheet, it can not work. the excel
version is 2000.
can anybody help me with this?
Thank you
Kelly