create custom measure on a dashboard
Hello,
I would like to create a custom measure on Sisense dashboard that can do the same this SQL is doing
SELECT
COALESCE(SUM(CASE
WHEN channel = 'Email' AND message_event_type = 'Dispatched' THEN count_of_engagement
ELSE 0
END
), 0) AS email_count_dispatched
FROM event;Can anyone guide me on how to proceed with this? Â
DRayÂ
ramansingh89
Posted 2 years ago·Last reply 2 years ago
2 comments
Hamza Jap-Tjong
·2 years agoHey ramansingh89Â
It would be something like this;
If you want to sum this, then you probably would need a multi-pass aggregation within this formula. If you can share a screenshot of your widget I can help you finetune this. above formula will work (will work the best on a detailed level).
Hamza