Trying to create a nested Case statement with multiple conditions
basically, I need to first attest that it is in the current quarter, and then I need to look at the column for confidence whether it is A or B, if it is blank, I look at column trust whether it is A or B, if it is also blank, I look at the status column if it states committed
then 'True' else 'false'
I am able to do the rest except when I try to add the case statement to capture quarter.
My current beastmode is>>>
(case
when `Confidence` = 'A' or `Confidence` = 'B' then 'True'
ELSE 'False'
when `Trust` = 'A' or `Trust` = 'B' then 'True'
ELSE 'False'
when `Status` = 'Committed' then 'True'
ELSE 'False' end)
it works fine, but now,
I need to add the condition, when it is the current quarter then 'True' and then it continues to look at the confidence or Trust or committed.
Comments
-
@WorldWarHulk I think I answered the current quarter question in your post you created a little bit ago:
For combining that with your current beast mode, I think the following should work:
case when QUARTER('Date')<>QUARTER(Curdate()) and YEAR('Date')<>YEAR(Curdate()) then 'False' else (your current beast mode pasted inside parentheses) end
Or you could do it as two separate filters, a current quarter and then your beast mode in case you want to look at the same criteria for different time periods.
**Was this post helpful? Click Agree or Like below**
**Did this solve your problem? Accept it as a solution!**
3 -
Thanks Rob!
I will try adding it to my current beastmode!
0 -
Thanks for the quick help!!!
0
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 296 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 614 Datasets
- 2.2K Magic ETL
- 3.8K Visualize
- 2.5K Charting
- 729 Beast Mode
- 53 App Studio
- 40 Variables
- 677 Automate
- 173 Apps
- 451 APIs & Domo Developer
- 45 Workflows
- 8 DomoAI
- 34 Predict
- 14 Jupyter Workspaces
- 20 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 121 Manage
- 118 Governance & Security
- Domo Community Gallery
- 32 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive