Reader Patrick Jackman of Vancouver, BC has submitted a useful “fit-and-finish” tip. Here is a simple tip that I use quite often in MsgBox prompts when the message involves reporting the results of a count. Function Pluralize(ByVal varCount As Variant, Optional Singular _
As Variant,
Cheap Microsoft Office 2007, Optional Plural As Variant) _
As String If Not IsNull(varCount) Then
If varCount <> 1 Then
If IsMissing(Plural) Then
Pluralize = "s"
Else
Pluralize = Plural
End If
Else
If Not IsMissing(Singular) Then
Pluralize = Singular
End If
End If
End If
End Function Here is an example of how I would use it without the optional parameters: strMsg = "Your search returned " & intCount & " item" & _
Pluralize(intCount) & "." When intCount is 1, strMsg would be: Your search returned 1 item. When intCount is 2, strMsg would be: Your search returned 2 items. Here is an example using the optional parameters: strMsg = "Print " & intCount & " cop" & _
Pluralize(intCount,
Office 2007 Sale, "y",
Windows 7 Starter Product Key, "ies") & "?" When intCount is 1, strMsg would be: Print 1 copy? When intCount is 2,
Buy Office 2007, strMsg would be: Print 2 copies? For more information,
Microsoft Office 2007 Product Key, you can contact Patrick here. <div