Internal : Failed to translate data - No conversion available from Text to Collection

sreejith

Member
hi @Nalluriprasad

You are actually passing a string to a collection and so the error. [Account Split.Column1] is the string value and [Account Split] is the collection. Change the data type of Account Type to 'Text' and try. (assuming 'Account Type' is of Text Type)
 

michaelargo

New Member
I know this is kind of an old thread but I am still having trouble with it. Can you provide more detail on what resolved this?
 

sahil_raina_91

Active Member
I know this is kind of an old thread but I am still having trouble with it. Can you provide more detail on what resolved this?

The issue here is that you are trying to store a TEXT value inside a COLLECTION.
[Account Split.Column1] is a TEXT value and needs to be stored in a TEXT Data Item and NOT a COLLECTION Data Item.

[Account Split] is a COLLECTION but
[Account Split.Column1] refers to a value inside Column1 which is of TEXT type
 
Top