Help with IF formula

I want to enter a value in Column155 when Asbestos Awareness column is "Passed" and Asbestos Awareness Completion Date column is in the current year.
I have tried the following formula which returns blank not 0:30 on current year
=IF([Asbestos Awareness Completion Date]@row = "TODAY()", "0:30", IF([Asbestos Awareness Completion Date]@row = "Passed", "0:30", ""))
Answers
-
Sorry "TODAY()" should say "YEAR()"
-
You may try something like
=IF(AND(YEAR([Asbestos Awareness Completion Date]@row) = YEAR(TODAY()), [Asbestos Awareness Completion Date]@row = "Passed"), "0:30", "")
-
This returns Incorrect Argument unfortunately.
-
Is your completion date column definitely set as a date type column? If so, how exactly is it being populated?
-
Yes definitely a Date Type Column and date is entered manually.
-
I've just tried it again and it is working although the I am getting invalid data type in blank columns
-
Start it with an IF statement:
=IF([Date column name]@row <> "", IF(AND(………..)))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.1K Get Help
- 449 Global Discussions
- 154 Industry Talk
- 504 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 513 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!