Multiple dropdown selection and perform some operation
i am having 3 field
Stipend Amount | Semester(dropdown with multiple selection) | value(want formula)
1)25000 | fall,spring(have selected multiple option in dropdown) | 2500(stipend amount/10) and if there is only one selection than (stipend/5)
2)25000 | fall(single value selected) | 5000(stipend amount/5)
need help to get value
Answers
-
So you want to divide the Stipend Amount by (5,000 * number of selections)?
Give this a try:
=[Stipend Amount]@row / (5000 *COUNTM(Semester@row))
-
no i have solve it but if there is any alternative way for this formula
=IF(AND(HAS(Semester@row, "Fall"), HAS(Semester@row, "Spring"), HAS(Semester@row, "Summer I"), HAS(Semester@row, "Summer II")), [Stipend/Award Amount]@row / 12, IF(AND(HAS(Semester@row, "Fall"), HAS(Semester@row, "Spring"), HAS(Semester@row, "Summer I")), [Stipend/Award Amount]@row / 11,
IF(AND(HAS(Semester@row, "Fall"), HAS(Semester@row, "Spring"), HAS(Semester@row, "Summer II")), [Stipend/Award Amount]@row / 11,
IF(AND(HAS(Semester@row, "Fall"), HAS(Semester@row, "Summer I"), HAS(Semester@row, "Summer II")), [Stipend/Award Amount]@row / 11,
IF(AND(HAS(Semester@row, "Fall"), HAS(Semester@row, "Spring")), [Stipend/Award Amount]@row / 10,
IF(AND(HAS(Semester@row, "Fall"), HAS(Semester@row, "Summer I")), [Stipend/Award Amount]@row / 6,
IF(AND(HAS(Semester@row, "Fall"), HAS(Semester@row, "Summer II")), [Stipend/Award Amount]@row / 6,
IF(AND(HAS(Semester@row, "Fall")), [Stipend/Award Amount]@row / 5, 0))))))))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.7K Get Help
- 406 Global Discussions
- 218 Industry Talk
- 456 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 297 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!