Is it possible to write a single row from a 2D array to a range?
Let's say I have a 10x10 Array called TrueTestTimeA
and a 10x10 range called TrueTestRange
To write the entire Array to the Range I would use:
But what if I only want to write one row of the array to a singe row range. I know I can do this by looping, but is there a way to do it with a single line like the .value (or another) technique?![]()
TrueTestRange.Value = TrueTestTimeA
Thanks,
Tom
Bookmarks