Thanks Brian,
I used the suggested formulas as -
First formula-
split({ASSET.DESCRIPTION},",")[1]
Second formula-
if ubound(split({Asset.Description},",")) >= 2 then
split({Asset.Description},",")[2]
else ""
Third Formula-
if ubound(split({Asset.Description},",")) >= 3 then...