Notification at multiples minus a number
Hello,
I have a spreadsheet where each row counts hours, then a column keeps a running total of all hours.
I would like to be notified at certain intervals as every 150 hours I need to do a task however I need some prep time so I would like to be notified 20 hours before 150.
So when my column value reaches 150, 300, 450, 600 I would like to be notified at 130, 280, 430, & 580.
While 130 is 150-20, I cant track factors of 130 since then I'll get notified 260, 390, & 520.
Any suggestions? thank you!
Answers
-
Try a MOD function.
IF(MOD(SUM(Hours:Hours), 150) = 130, 1)
I am not sure of your exact setup, but MOD150 would only present the numbers 0 - 149. So whenever MOD150 equals 130, you are now 20 hours before the next multiple of 150.
-
Hi Paul,
That as very helpful, thank you!
-
Happy to help. 👍️
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!