Hi ,
I'm working with the Domo Governance dataflow, and I wanted to create a card which shows a message based on the successful update.
I have 4 dataflow A,B,C,D. I wanted to see a message 'successful', if all the 4 dataflow has ran successfully today. Else it should should show a message 'Pending'.
Here is my beast mode:
Case when Name = 'A' and Name = 'B' and Name = 'C' and Name = 'D' and
date(last updated time) = Date(Curdate()) and Last Execution state = 'Success' then 'Success'
Else 'Pending'
Now, all the dataflow has ran successfully, but the message is showing as Pending, which is wrong. Is there any issue in my beast mode.
Looking forward for a solution.
Thanks in advance