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
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!