christhedonstar
Programmer
Imagine I have selection A1:C1
with values 1, 2 and 3 respectively
If I write the code
dim myAddresses as variant
dim myValues as variant
myAddresses = selection.address
myValues = selection.values
myAddresses will be a string A1:C1
myValues will be an array with the following values 1, 2, and 3
Is it possible (quick way) to make myAddresses match up by being an array and having values A1, B1, C1?
Thanks,
Chris
with values 1, 2 and 3 respectively
If I write the code
dim myAddresses as variant
dim myValues as variant
myAddresses = selection.address
myValues = selection.values
myAddresses will be a string A1:C1
myValues will be an array with the following values 1, 2, and 3
Is it possible (quick way) to make myAddresses match up by being an array and having values A1, B1, C1?
Thanks,
Chris