I have a data window that I want to display the quantity of the order if the order qty is greater than 0. I dont want the 0 to display. I added a check in the visible property on the general tab of the field which stated order_qty > 0 make visible. The problem is that when ra ow is 0 then all will not show visible. Second I tried placing a case statement directly in the sql select of the datawindow ie.
when "ORD_QTY" = 0 then '' end as AC_ORD_QTY - that seemed to do the same- make all values null. Any suggestions? This is strickly done through a datawindow report not using a window. I want to display '' for 0 values and the actual value for values > 0. Thanks in advance
when "ORD_QTY" = 0 then '' end as AC_ORD_QTY - that seemed to do the same- make all values null. Any suggestions? This is strickly done through a datawindow report not using a window. I want to display '' for 0 values and the actual value for values > 0. Thanks in advance