Formula for changing cell to "Completed" on non-blank cells

psanghvi

New Member
Joined
Apr 23, 2010
Messages
10
Hello all,

I was hoping to get some help on the formula to mark a certain cell as "Completed" the moment the adjoining row cells are non-blanks.

For ex: I have a database which has over 100 rows & columns a:e = which are always populated. Howver column f,g &h are to be user entered.

I want a formula in Column I where the moment all the columns in the pertinent row are populated including f,g,h the I should be marked as COMPLETED. Even if one of the cell in the pertient row - cells a:h is blank, the I should be ntoed as "PENDING".

Obviously, if all of the cells on that are row are blank - column I should be blank for that row.

Thanks!
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Or possibly:-
Code:
=IF(COUNTA(A2:H2)=0,"",IF(COUNTA(A2:H2)<8,"pending","completed"))
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,716
Members
452,939
Latest member
WCrawford

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