Stings cannot be set to nothing, only objects/variants.
Dim test1, test2 as string results in test1 being a variant, and test2 being a string.
To get two string you would need to do,
Dim test1 as string, test2 as string.
Then both would fail trying to set them to nothing, try...