R rhymie New Member Apr 25, 2007 #1 Hello, how can I change DataValue in Crosstab so as not to show 0 value I tried with method Sub finish() Sub Finish( ) Super::Finish( ) If DataValue = 0 Then DataValue = Null End If End Sub DataValue is numeric regards
Hello, how can I change DataValue in Crosstab so as not to show 0 value I tried with method Sub finish() Sub Finish( ) Super::Finish( ) If DataValue = 0 Then DataValue = Null End If End Sub DataValue is numeric regards
R rhymie New Member Apr 26, 2007 #2 Well, I've just made it : Crosstab -> Crosstab builder -> Expression Builder IIf (Sum(numeric_value)=0, Sum(numeric_value)=Null, Sum(numeric_value) ) I hope it will be useful for you. But how to change a color depends on its value in crosstab ?
Well, I've just made it : Crosstab -> Crosstab builder -> Expression Builder IIf (Sum(numeric_value)=0, Sum(numeric_value)=Null, Sum(numeric_value) ) I hope it will be useful for you. But how to change a color depends on its value in crosstab ?
P Peter Headland New Member Apr 26, 2007 #3 rhymie said: IIf (Sum(numeric_value)=0, Sum(numeric_value)=Null, Sum(numeric_value) ) Click to expand... That is horribly inefficient and totally unnecessary. All you need to do is set the Format property of the value(s) to something like this: Code: 0;;"" Check the manuals for more about using multi-part format patterns.
rhymie said: IIf (Sum(numeric_value)=0, Sum(numeric_value)=Null, Sum(numeric_value) ) Click to expand... That is horribly inefficient and totally unnecessary. All you need to do is set the Format property of the value(s) to something like this: Code: 0;;"" Check the manuals for more about using multi-part format patterns.