IF/AND formula

I need to calculate the number of Network Days based on a Leave Status but if a half day has been checked, it needs to just put 0.5. The formula I am currently using is:
=IF(AND([Half Day]@row = 1) [Leave Type]@row = "TOIL", "0.5", NETWORKDAYS([Start Date]@row, [End Date]@row))
But I'm getting a #Unparsable error.
What am I doing wrong?
TIA
Cheryl
Best Answers
-
The AND piece is just a little off.
=IF(AND([Half Day]@row = 1, [Leave Type]@row = "TOIL"), "0.5", NETWORKDAYS([Start Date]@row, [End Date]@row))
-
Hi Cheryl,
Looks like you need some commas and one more parenthesis to initiate the IF AND
Give this a shot and see if it works for you:
=IF(AND([Half Day]@row = 1, [Leave Type]@row = "TOIL"), 0.5, NETWORKDAYS([Start Date]@row, [End Date]@row))
https://www.linkedin.com/in/zchrispalmer/
Answers
-
The AND piece is just a little off.
=IF(AND([Half Day]@row = 1, [Leave Type]@row = "TOIL"), "0.5", NETWORKDAYS([Start Date]@row, [End Date]@row))
-
Hi Cheryl,
Looks like you need some commas and one more parenthesis to initiate the IF AND
Give this a shot and see if it works for you:
=IF(AND([Half Day]@row = 1, [Leave Type]@row = "TOIL"), 0.5, NETWORKDAYS([Start Date]@row, [End Date]@row))
https://www.linkedin.com/in/zchrispalmer/
-
Perfect, thanks @Mr. Chris @Paul Newcome
Worked perfectly. Knew it would have to be something simple.
Cheryl
-
Excellent. Glad this worked for you.
https://www.linkedin.com/in/zchrispalmer/
Help Article Resources
Categories
Check out the Formula Handbook template!