If function
Hello, may I request assistance troubleshooting a formula? I have the formula below to identify if the reconciliation is out of balance. In January, the Available Resources and Fiscal Report Ending Balance match, yet the Status display Out of Balance. Is it because it's a negative number?
=IF([Available Resources]@row = [Fiscal Report Ending Balance]@row, "Balance", IF([Available Resources]@row <> [Fiscal Report Ending Balance]@row, "Out of Balance"))
Best Answer
-
Is it possible they are off by decimals?
You can correct this in the formula by adding the round function:
=IF(ROUND([Available Resources]@row, 2) = ROUND([Fiscal Report Ending Balance]@row, 2), "Balance", IF(ROUND([Available Resources]@row, 2) <> ROUND([Fiscal Report Ending Balance]@row, 2), "Out of Balance"))
Answers
-
Is it possible they are off by decimals?
You can correct this in the formula by adding the round function:
=IF(ROUND([Available Resources]@row, 2) = ROUND([Fiscal Report Ending Balance]@row, 2), "Balance", IF(ROUND([Available Resources]@row, 2) <> ROUND([Fiscal Report Ending Balance]@row, 2), "Out of Balance"))
-
@Leibel S thank you for your reply. Perfect!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.3K Get Help
- 364 Global Discussions
- 199 Industry Talk
- 428 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 445 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!