Just a quick question on VBA Arrays...
What happens if I use the ReDim Preserve statement and I resize an Array by decreasing the Upper index number. If myArray(5) ="Shmoo" what if I do that:
ReDim Preserve myArray(2)
Can it be done since the Preserve must not loose the data that are tied to each index number in the array and index number 5 in the array has the String value "Smoo" ?