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
- 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!