Does anyone know if there is a setting in answers to replace multiple columns containing null values with 0 (or some other custom value)?
A user put several reports on a dashboard page and now wants to see nulls replaced with 0's. Obviously we can add ifnull(fact,0) to each affected column but with the number of reports we're looking at, it would require over 100 columns to be changed.
I've looked into this on the RPD side but our aggregation rule sums the values and we are using an inner join so the ifnull is essentially ignored. We also would not want to create a new fact column in the RPD derived from these facts.
Your help with this is appreciated, thanks!