G
Guest
I am dumping the values in an array using the Debug.Print statment as follows:
Debug.Print HourData(Counter - 1, 0) & " " & HourData(Counter - 1, 1) & " "
& HourData(Counter - 1, 2) & " " & HourData(Counter - 1, 3) & " " &
HourData(Counter - 1, 4)
This is working fine but its difficult to read the data as the space width
for each field varies. Does anyone know how create set space width when
printing to the Immediate window so the columns are easier to read? I know I
can manuall enter more spaces in between the " ". Is there anything more
elegant than this?
Thanks
EM
Debug.Print HourData(Counter - 1, 0) & " " & HourData(Counter - 1, 1) & " "
& HourData(Counter - 1, 2) & " " & HourData(Counter - 1, 3) & " " &
HourData(Counter - 1, 4)
This is working fine but its difficult to read the data as the space width
for each field varies. Does anyone know how create set space width when
printing to the Immediate window so the columns are easier to read? I know I
can manuall enter more spaces in between the " ". Is there anything more
elegant than this?
Thanks
EM