I am not sure how you can do it thereBut If possible, you concatenate the data and split them using comma when you displayexdeclare @t table(a1 varchar(10),a2 varchar(10),a3 varchar(10))insert into @tselect 'a','b','c' union allselect 'a',null,'c' union allselect 'a','b',null select coalesce(a1,'')+coalesce(','+a2,'')+coalesce(','+a3,'') as a3 from @tOtherwise post your question at Reporting Services ForumMadhivananFailing to plan is Planning to fail