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.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!