Skip to main content
Hi everyone,
I would like to add a line with a count all requests with a closed date not null by month on my chart.

image.png1215225 17.9 KB

I tried with this formulation but it is not working:
CASE WHEN name_table.closed_at <> NULL THEN COUNT_TABLE(name_table) ELSE 0 END
Hey Laura,
What is your Dimension, Is it also in the Name Table?
If yes, then you could just have as a Dimension
Month(name_table.closed_at)
And as a KPI
Count(name_table.closed_at)
The Count function doesnt count NULL values.
Best Regards,
Benedict
P.S.: If this doesnt work, could you please provide the dimension in your reply and how the two tables are linked?
Hi Bene,
Thanks for your reply.
My dimension its the created_on.
I would like to know how many request of the request created in the month X are now closed.
So if I leave my dimension as created_on
and I add a KPI Count (closed_at),
I should have the number of request closed in the month or the number of closed request which was open in the month (no matter closingdate)?
Hey Laura,
Then you would have the lather, the amount of closed request which were opened in that month. FYI: The aggregation is always dependent to your Dimension, the KPI is just the value which is aggregated.
Best Regards,
Benedict
Hey Bene,
Thank you for your support

Reply