Can somebody please help me fix my =IF statement?

Milos

Board Regular
Joined
Aug 28, 2016
Messages
121
Office Version
  1. 365
Platform
  1. Windows
Hi all,

I have an IF statement that is not working and I am after someone with more knowledge than I have to help me fix it, or make another formula to the same effect.

My statement is trying to perform some quick stats to identify start progress. The two letter words are the initials of my co-workers and they update this tracking sheet a couple of times a day. I want to be able to search the columns H:K for their initials and easily filter for how many of the rows have been started.

This is the formula I have so far:

=IF(OR(ISNUMBER(SEARCH("HS",H3:K3)),ISNUMBER(SEARCH("NT",H3:K3)),ISNUMBER(SEARCH("KR",H3:K3))),"Started","Not started")

Thanks,
Milos
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Try

=IF(SUM(COUNTIF(H3:K3,{"HS";"NT";"KR"})),"Started","Not Started")

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,595
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top