i have those records in my dataset :
AAA,BBB,CCC,DDD
EEEEEEEEEE,FF,GGGGGGGGGG
I'd like to get the word separated with comma
For example, in the first line, i'd like to get :
AAA
BBB
CCC
and in the secand line :
EEEEEEEEEE
FF
GGGGGGGGGG
I can't use WORD function because, it is not space separated value...
Thank's.