Hi,

I have an array with 20 spaces and know the data I need to put into each slot is there a quicker way to do this than by doing

MyArray(0) = 1
MyArray(1) = 6
MyArray(2) = 10

etc,,,

Is it possible to do something like

MyArray = (1, 6, 10 etc)

It would save a lot of screen space for a start !