I need to format every number in MyArray with a thousand separator. I want it to add ",".
Since the numbers in the array will be <= maximum value of a Long, which is 2,147,483,647.
What should the "???????" be replaced with?.
Code:For i = LBound(MyArray) To UBound(MyArray) Myarray(i) = Format(Myarray(i), ???????) Next




.
Reply With Quote