Hello...
I am using an R1C1 reference to determine the Totals of a few rows. However, if the total of the R1C1 reference comes to 0, I would like to display a Null value instead of the 0. Is this possible? My current statement is below...
args := OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG ( args, v_row_count );
OLE2.ADD_ARG ( args, v_column_count);
cell := OLE2.GET_OBJ_PROPERTY ( worksheet, 'Cells', args );
OLE2.DESTROY_ARGLIST ( args );
OLE2.SET_PROPERTY ( cell, 'FormulaR1C1', '=SUM(R[-7]C:R[-1]C)' );
Any help anyone could offer is much appreciated!!
Thanks In Advance!!
I am using an R1C1 reference to determine the Totals of a few rows. However, if the total of the R1C1 reference comes to 0, I would like to display a Null value instead of the 0. Is this possible? My current statement is below...
args := OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG ( args, v_row_count );
OLE2.ADD_ARG ( args, v_column_count);
cell := OLE2.GET_OBJ_PROPERTY ( worksheet, 'Cells', args );
OLE2.DESTROY_ARGLIST ( args );
OLE2.SET_PROPERTY ( cell, 'FormulaR1C1', '=SUM(R[-7]C:R[-1]C)' );
Any help anyone could offer is much appreciated!!
Thanks In Advance!!