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
- 68K Get Help
- 474 Global Discussions
- 209 Use Cases
- 517 Announcements
- 5.6K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 85 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!