Forum Discussion
Hursh Patel
Apr 04, 2018Copper Contributor
Need help with formula
I have this Formula inputted into my spreadsheet but I also want it to state if the cell has N/a to mark complete.
=IF(COUNTIF(P3:Z3,"x")=11,"Completed","Incomplete")
How do you do that? is that possible?
Please use this formula
=IF(SUM(COUNTIFS(P3:Z3,{"x","N/a"}))=11,"Completed","Incomplete")
- JamilBronze Contributor
This will work for you.
so if the cells in your range P3:Z3 either will have x or N/A then completed otherwise not completed
=IF(SUM(COUNTIFS(P3:Z3,{"x","N/A"}))=11,"Completed","Incomplete")
- Hursh PatelCopper Contributor
- JamilBronze Contributor
Please use this formula
=IF(SUM(COUNTIFS(P3:Z3,{"x","N/a"}))=11,"Completed","Incomplete")
- Hursh PatelCopper Contributor
YES! that worked Thank you!!!
- JamilBronze ContributorYou are welcome.