G
Guest
I am consolidating multiple cells (data) into one cell and when I do that, it
seems that when it finds large amount of data in one cell it does not select
the row and inserts into the second table. I am using VB code to move the
data.
Table1:
Column1 Column2
A 1
A 2
B 1
B 2
B 3
C 1
Table2:
Column1 Column2
A 1, 2
B 1, 2, 3
C 1
Except that instead of numbers they are characters (phases, sentenses). I
am not sure if the row is not selected or if the row is selected but not
inserted. I believe that this has to do with the number of characters in the
cell because for others rows with less characters in the cell the code works
perfect. The datatype in both tables is "MEMO". When selecting (VB code)
from the table, I declared the variable as a "STRING". Is the variable
(string) the problem? What should I change the variable to?
seems that when it finds large amount of data in one cell it does not select
the row and inserts into the second table. I am using VB code to move the
data.
Table1:
Column1 Column2
A 1
A 2
B 1
B 2
B 3
C 1
Table2:
Column1 Column2
A 1, 2
B 1, 2, 3
C 1
Except that instead of numbers they are characters (phases, sentenses). I
am not sure if the row is not selected or if the row is selected but not
inserted. I believe that this has to do with the number of characters in the
cell because for others rows with less characters in the cell the code works
perfect. The datatype in both tables is "MEMO". When selecting (VB code)
from the table, I declared the variable as a "STRING". Is the variable
(string) the problem? What should I change the variable to?