flag if > 6000
=IF([Current Mileage]@row - [Service Mileage / Hrs]@row, >6000, 1)
What am I doing wrong? Iwant to flag if the difference is greater than 6,000
Best Answer
-
Hi @Samuel Dowdy Jr ,
Try this:
=IF(([Current Mileage]@row - [Service Mileage / Hrs]@row) >6000, 1,0)
The syntax for an IF statement is: IF( logical_expression, value_if_true, [ value_if_false ])
Work?
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Answers
-
Hi @Samuel Dowdy Jr ,
Try this:
=IF(([Current Mileage]@row - [Service Mileage / Hrs]@row) >6000, 1,0)
The syntax for an IF statement is: IF( logical_expression, value_if_true, [ value_if_false ])
Work?
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!