Formula / Solution / Idea - If cell exceeds a value move remainer to another cell..
Greetings…..
Need a formula or solution that if the value of a cell exceeds 10, move the remaining to a different cell. In this example, I have columns named C1, C2, C3, C4 and Time, and a form that collects the data from the Time field. A user goes to the form, they add 15 into the Time field, I would like 10 placed in C1 and 5 in C2. When the user goes back to the form again and updates time by adding 20 hours, I need C2 to now be 10, C3 now 10, and C4 5, etc…
Any help or ideas would be much appreciated.
Answers
-
Hey @Kerry Kubaszyk,
For C1, do something like this:
=IF(Time@row > 10, 10, Time@row)
Then, C2, do this:
=IF(Time@row > 20, 10, (Time@row - 10))
C3:
=IF(Time@row > 30, 10, (Time@row - 20))
Etc, etc.
I think this will work. Logically in my head it makes sense that it should.
Hope this helps!
If my response was helpful in any way (or answered your question) please be sure to upvote it, mark it as awesome, or mark it as the accepted answer!
I'm always looking to connect with other industry professionals, feel free to connect with me on LinkedIn as well!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.1K Get Help
- 380 Global Discussions
- 212 Industry Talk
- 442 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 450 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 289 Events
- 34 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!