Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Summarize Tool for Open Items

ZoeM
8 - Asteroid

Gurus!

Who said work doesn't happen on Sundays!

I am stuck. I need to summarize data to match the below snip. Essentially, I have data with issues, if any program has an open issue while others are closed that program remains 'Open'. If all issues are closed then that program is 'Closed'.

 

ZoeM_0-1684702369724.png

 

Any ideas?

 

6 REPLIES 6
alexnajm
18 - Pollux
18 - Pollux

The Summarize tool should just be configured to group by Program and group by Program Status!

ZoeM
8 - Asteroid

Thanks!

I guess what I am trying to do is get the Program Status field results, i.e. if one issue is 'Open' then all results will be Open. Then I could use the summarize tool...

alexnajm
18 - Pollux
18 - Pollux

But they are all Open in the Program Status field already!

ZoeM
8 - Asteroid

Thanks for keeping me honest alexnajm!

The Program Status field is actually blank! The statement I am looking to evaluate is "If one issue is Open then the program level is Open even if other issues are closed". Only when all issues are closed should it evaluate the program as closed.  

alexnajm
18 - Pollux
18 - Pollux

Try this then!

flying008
15 - Aurora

Hi, @ZoeM 

 

Please see the formula:

IIF(Contains([Program Status], 'OPen'), 'Open', 'Closed')

 

录制_2023_05_27_14_09_10_300.gif

Labels
Top Solution Authors