Jun 29, 2009 #1 jack91 Technical User Apr 13, 2009 185 US hi, I have a particular column that has some blank values in some rows. I want to group all the rows where a particular column has blank values and put them at the end of the report. Please suggest a way to do this. Thanks Jk
hi, I have a particular column that has some blank values in some rows. I want to group all the rows where a particular column has blank values and put them at the end of the report. Please suggest a way to do this. Thanks Jk
Jun 29, 2009 Thread starter #2 jack91 Technical User Apr 13, 2009 185 US *correction: Topic header should read: grouping all rows with a blank column together Upvote 0 Downvote
Jun 29, 2009 #3 lbass Technical User Feb 9, 2002 32,818 US Create a formula: if isnull({table.column}) or trim({table.column}) = "" then 1 Insert a group on this->ascending order. -LB Upvote 0 Downvote
Create a formula: if isnull({table.column}) or trim({table.column}) = "" then 1 Insert a group on this->ascending order. -LB
Jun 30, 2009 Thread starter #4 jack91 Technical User Apr 13, 2009 185 US strange: I did this but it does not seem to make a difference. I inserted the formula as a group and made it ascending order but i see no changes in the order. Regards, jk Upvote 0 Downvote
strange: I did this but it does not seem to make a difference. I inserted the formula as a group and made it ascending order but i see no changes in the order. Regards, jk
Jun 30, 2009 #5 lbass Technical User Feb 9, 2002 32,818 US It has to be your outermost group. -LB Upvote 0 Downvote
Jul 1, 2009 Thread starter #6 jack91 Technical User Apr 13, 2009 185 US Thanks!! Jk Upvote 0 Downvote