Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I've created an Excel report in NPrint, of a dozen columns of numeric values, with the dimension in the first column (so standard table) - there's 2 things i'd like to format if its possible?
thanks in advance,
Phil.
Qlik 11.2 SR12
NPrint 16.5
Hi Phil,
1. I do not know if this is possible directly in NPrinting/PPT but you can change total to last row in Chart properties / Presentation.
2. You need to use background color of expressions and dimensions and use the Dimensionality() to find out at which level you are. Note - use Dimension limits Total to get background color in dimensions, the expression total does not honor it.
So expression like this will give you red for Total, green for subtotals and blue for normal rows.
Pick(Dimensionality() + 1, red(), green(), blue())
BR,
Matus
Thanks for the help Matus - most useful!