Can i join a Max value and a Min Value of child rows?
I have a sheet with a process listed out and stages nested under the parent stage. I want to add a formul at the parent level to show the phase range. I want to write a formula that will Join(Collect) the minimum and maximum value of the child rows.
=JOIN((COLLECT(((MAX(CHILDREN()))), "-", (MIN(CHILDREN())))))
Best Answer
-
You don't actually need the COLLECT function here. You can either use JOIN, or I would simply add your two formulas together with the "-" in between like so:
=MAX(CHILDREN()) + " - " + MIN(CHILDREN())
Let me know if this is what you were looking to do!
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Answers
-
You don't actually need the COLLECT function here. You can either use JOIN, or I would simply add your two formulas together with the "-" in between like so:
=MAX(CHILDREN()) + " - " + MIN(CHILDREN())
Let me know if this is what you were looking to do!
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
Thank you that worked!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 146 Just for fun
- 63 Community Job Board
- 465 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!