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
- 10.5K All Categories
- 8 Connect
- 918 Connectors
- 250 Workbench
- 473 Transform
- 1.7K Magic ETL
- 69 SQL DataFlows
- 478 Datasets
- 211 Visualize
- 257 Beast Mode
- 2.1K Charting
- 12 Variables
- 18 Automate
- 355 APIs & Domo Developer
- 89 Apps
- 3 Workflows
- 20 Predict
- 5 Jupyter Workspaces
- 15 R & Python Tiles
- 247 Distribute
- 63 Domo Everywhere
- 243 Scheduled Reports
- 21 Manage
- 42 Governance & Security
- 183 Product Ideas
- 1.2K Ideas Exchange
- 11 Community Forums
- 27 Getting Started
- 14 Community Member Introductions
- 55 Community News
- 4.5K Archive