Avatar

Level 3

Kyle, thanks again for all your help!

I finally used one of the first options you suggested:

this.rawValue = (form1.Subform1.TextField8.isNull?"":form1.Subform1.TextField8.rawValue)

    +(form1.Subform1.TextField9.isNull?"":", "+form1.Subform1.TextField9.rawValue)

    +(form1.Subform1.TextField10.isNull?"":", "+form1.Subform1.TextField10.rawValue)

    +(form1.Subform1.TextField11.isNull?"":", "+form1.Subform1.TextField11.rawValue)

    +(form1.Subform1.TextField12.isNull?"":", "+form1.Subform1.TextField12.rawValue)

    +(form1.Subform1.TextField13.isNull?"":", "+form1.Subform1.TextField13.rawValue)

//and so on, until the last field

It´d be nice to have it done by using the last piece of code you wrote, the one with the array and the loop, but i couldn´t make it work

Thanks!