Sep 21, 2003 #1 Reghita Programmer Sep 9, 2002 16 AU Hi All does anyone know how can i able to print a value in a cross tab if the currentfield value is null For example i want the value 10 to be display if the currentfield value is null. does anyone know how this can be done? Thanks
Hi All does anyone know how can i able to print a value in a cross tab if the currentfield value is null For example i want the value 10 to be display if the currentfield value is null. does anyone know how this can be done? Thanks
Sep 21, 2003 #2 lbass Technical User Feb 9, 2002 32,816 US For your summary field, use: if isnull({table.field}) then 10 else {table.field} -LB Upvote 0 Downvote