To be correct the Ranges are :
D9:X31
D45:X58
D82:X93
Codes are: T 1 till T31 and G 1 till G 31
What would be the correct line in VBA ?
> Well, you could use VBA to put a space character in the cell to the
> right...
>
> Range("G2:G" & Range("A" & Rows.Count).End( _
> xlUp).Row).FormulaR1C1 = " "
>
>
> In article <12021$42d3ef90$546b00f2$31371@news.multikabel.nl>,
> "Roby" <r.udo@quicknet.nl> wrote:
>
>> Isn't there an other option, VBA ?
>>
>>
>> > Put a space character in the cell to the right.
>> >
>> > In article <2baaf$42d3d223$546b00f2$28902@news.multikabel.nl>,
>> > "Roby" <r.udo@quicknet.nl> wrote:
>> >
>> >> Have a Sheet with codes :
>> >>
>> >> A B C D C
>> >> 1 T G G G 12
>> >> 2 G G G T 11
>> >> 3 G G T T 23
>> >>
>> >> (each Cell is 16x16 pixels)
>> >> The G's and T's are codes (Format as "T 12"
>> >> (Letter-Space-Space-Number))
>> >> The Number part should be hidden under the next Cell but in each line
>> >> the
>> >> last
>> >> Cell it is above this Cell.
>> >>
>> >> Want it to be like this :
>> >>
>> >> A B C D C
>> >> 1 T G G G
>> >> 2 G G G T
>> >> 3 G G T T
>> >>
D9:X31
D45:X58
D82:X93
Codes are: T 1 till T31 and G 1 till G 31
What would be the correct line in VBA ?
> Well, you could use VBA to put a space character in the cell to the
> right...
>
> Range("G2:G" & Range("A" & Rows.Count).End( _
> xlUp).Row).FormulaR1C1 = " "
>
>
> In article <12021$42d3ef90$546b00f2$31371@news.multikabel.nl>,
> "Roby" <r.udo@quicknet.nl> wrote:
>
>> Isn't there an other option, VBA ?
>>
>>
>> > Put a space character in the cell to the right.
>> >
>> > In article <2baaf$42d3d223$546b00f2$28902@news.multikabel.nl>,
>> > "Roby" <r.udo@quicknet.nl> wrote:
>> >
>> >> Have a Sheet with codes :
>> >>
>> >> A B C D C
>> >> 1 T G G G 12
>> >> 2 G G G T 11
>> >> 3 G G T T 23
>> >>
>> >> (each Cell is 16x16 pixels)
>> >> The G's and T's are codes (Format as "T 12"
>> >> (Letter-Space-Space-Number))
>> >> The Number part should be hidden under the next Cell but in each line
>> >> the
>> >> last
>> >> Cell it is above this Cell.
>> >>
>> >> Want it to be like this :
>> >>
>> >> A B C D C
>> >> 1 T G G G
>> >> 2 G G G T
>> >> 3 G G T T
>> >>