Trying to create a formula that will change the selected cell's text value

el3ment

New Member
Joined
Jun 14, 2012
Messages
6
Using Windows 7 enterprise and Excel 2007

I have been looking everywhere for the answer to my question with no success.
I am creating an employee training tracker and I am trying to create a formula that will change the selected cell's text value to 'GO' or 'NO-GO' based on input on a provided range of cells.

example. IF(a6:ag6 contains text value of either 'X' or 'N/A')=GO... SET VALUE otherwise should be 'NO-GO'
Thanks for the help

http://s16.postimage.org/vjwa7e38l/assessment.gif
ATTACHED IS A SCREENSHOT :)
 
Last edited:
Tried to download the addin and loaded into excel, but not sure exactly how to use it.

The formula you provided works only if the empty cell has a space character in it as " " but will not function if the empty cell has no character in it.

smdbmp.gif
 
Upvote 0

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
=IF(COUNTIF(B6:AG6,"X")+COUNTIF(B6:AG6,"N/A")+COUNTBLANK(B6:AG6)=COUNTA(B6:AG6),"GO","NO GO")

Adding the countblank worked, but now any character in the cell makes it a "GO" not just X or N/A
 
Upvote 0
=IF(COUNTIF(B6:AG6,"X")+COUNTIF(B6:AG6,"N/A")+COUNTBLANK(B6:AG6)=COUNTA(B6:AG6),"GO","NO GO")

Adding the countblank worked, but now any character in the cell makes it a "GO" not just X or N/A
Try this:

=IF(COUNTIF(A6:AG6,"X")+COUNTIF(A6:AG6,"N/A")=COLUMNS(A6:AG6),"GO","NO GO")
 
Upvote 0

Forum statistics

Threads
1,216,101
Messages
6,128,842
Members
449,471
Latest member
lachbee

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