Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi! I need to replace null on a pivot table for zeros. I just been encapsulating the measure like `If(isNull(measure), 0, measure)` and It looks to works fine, but in some cases there is some troubles with some dimensions I share this example where there is still some null values even my measure is 'If(IsNull(Null()), 'null', 'not null`)
Why this is happening? And how I can fix it?
You can try with this
Alt(Measure,0)
This returns the measure when it has value, and zero if not.
=Alt(Measure, 0)
The problem is that neither `Alt(measure, 0)` or `If(isNull(measure), 0, measure)` works. It happens on pivot tables when a combination doesn´t exits on the orginal dataset, here a simple example
```
```
In this case it happens to october data for dimension X.
It could be achieve with the new pivot table element but user lost functionality to place dimensions on the tables as they want