I\'m new to VBA and want to know if I can convert the following declaration and assignment into one line:
Dim clientToTest As String clientToTest = clientsTo
You can sort-of do that with objects, as in the following.
Dim w As New Widget
But not with strings or variants.