I'm using Excel VBA and I wanted to paste some of my code into yahoo questions. However, when I paste it it into the add details part of the question it looks correct, but then when I preview it I see "..." for longer lines of the text. How can I correct this?
Here's an example:
Public Function ErrorVlookup(zlookupvalue, zrange, zColumnIndex, zLogic) As Single
Dim zVar As String
zVar = WorksheetFunction.vlookup(zlookupvalue, zrange, zColumnIndex, zLogic)
If IsError(zVar) Then ErrorVlookup = 0 Else ErrorVlookup = zVar
End Function
2007-03-09
11:14:19
·
3 answers
·
asked by
jcueland
1