VBABEGINER
Well-known Member
- Joined
- Jun 15, 2011
- Messages
- 1,284
- Office Version
- 365
- Platform
- Windows
Hi,
Can any one here to tell the trick?
Can any one here to tell the trick?
Public Function doll()
Dim i
For i = 2 To 5
If Cells(i, 2) = "yes" Then
Cells(i, 3) = Cells(i, 2)
Else
If Cells(i, 2) <> "yes" Then
Cells(i, 3) = UPPER(Cells(i, 2)) ....i wanted here in cells(i,3) to UPPER the letter, but i dont know how can do, bcoz the using one is wrong
End If
End If
Next
End Function