Formula Syntax Error
I am trying to convert a column to a formula, but I am getting the Syntax error and it doesn't convert. The formula appears to work when in the cell and when dragged down, just not when I made it a column formula. Could you let me know what is wrong with it?
=IF(AND(ISERROR(Transmitted1), [Hours - Total Timecard Hours]1 = 0), "Zero-Hours", IF([Add Transmitted Date]1 <> "", "Duplicate", IF(AND(ISERROR(Transmitted1), [Hours - Total Timecard Hours]1 <> 0), "Missing", "Received")))
Best Answer
-
Column formula cannot have specific row number in the formula so you need to make use of @row.
Try this:
=IF(AND(ISERROR(Transmitted@row), [Hours - Total Timecard Hours]@row = 0), "Zero-Hours", IF([Add Transmitted Date]@row <> "", "Duplicate", IF(AND(ISERROR(Transmitted@row), [Hours - Total Timecard Hours]@row <> 0), "Missing", "Received") ) )
Answers
-
Column formula cannot have specific row number in the formula so you need to make use of @row.
Try this:
=IF(AND(ISERROR(Transmitted@row), [Hours - Total Timecard Hours]@row = 0), "Zero-Hours", IF([Add Transmitted Date]@row <> "", "Duplicate", IF(AND(ISERROR(Transmitted@row), [Hours - Total Timecard Hours]@row <> 0), "Missing", "Received") ) )
-
That did the job - thank you so much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!