Search results

  1. R

    Crosstab - DataValue

    thanks, it works great :) but how to change colors ?
  2. R

    Crosstab - DataValue

    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 ?
  3. R

    Crosstab - DataValue

    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
Top