Fill Empity space with zero

Hi,

Is there a way to fill the empty rows with zeros? It’s not null; the data simply doesn’t exist for that row in the dataset.


I’ve tried many calculaded fields, but didn’t work. My current calculated field is this:
ifelse(
isNull(sum(valorbaixaparcela)) OR sum(valorbaixaparcela) = 0,
0,
sum(valorbaixaparcela)
)

Hello Guilherme,

Please see this old post if it helps -Replace blank/NULL values by 0

Cheers,
Deep

1 Like

Hi Deep,

This only solve the visual part of the problem. In my case I need to have the sum of the rows and if a do the concat as shown in the post you sent, the sum won’t work!

Hi,

I think you can use coalesce for this.

sum(coalesce(valorbaixaparcela,0))

Hey thomask,

I’ve tried to use coalesce but didn’t work too!

Hi @glopes,
Checking in here as it’s been awhile since last communication on this thread; are you still working on this case or were you able to find a work around in the time since?

If we do not hear back within the next 3 business days, I’ll close out this topic.

Thank you

I couldn’t find a solution!