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:

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Hi and welcome to the Board
Code:
=IF(OR(AG6="X", AG6="N/A"),"GO","NO-GO")
 
Upvote 0
OOps..:oops: sorry, misread the post !!
 
Upvote 0
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 :)


Excel 2003
ABCDEFGH
63N/A232XXGO
745N/A76X1GO
878256N/A6GO
90N/A53N/A49GO
1009XX49N/AGO
116476X59GO
124194627NO GO
138N/A42603GO
141XXN/A3XXGO
153663426NO GO
16X6X4536GO
172226148NO GO
Sheet3
Cell Formulas
RangeFormula
H6=IF(COUNTIF(A6:G6,"X")+COUNTIF(A6:G6,"N/A")>0,"GO","NO GO")
 
Upvote 0
Well, what I wanted though is if within that range (a6:ag6) even one cell doesn't have an entry of X or N/A it should apprear as "NO-GO"
 
Upvote 0
Well, what I wanted though is if within that range (a6:ag6) even one cell doesn't have an entry of X or N/A it should apprear as "NO-GO"


Excel 2003
ABCDEFGH
6XN/AN/AXN/ANO GO
7XN/AXN/AXN/AXGO
8N/AXXXNO GO
9XN/AXXN/ANO GO
10XXXN/AN/AN/AXGO
11XXN/AXN/AN/AN/AGO
12XN/AN/AXXXN/AGO
13N/AXXXXXN/AGO
14N/AXN/AN/AN/AN/AXGO
15XXN/AXN/AN/AXGO
16N/AXN/AN/AN/AXNO GO
17XXXN/ANO GO
Sheet3
Cell Formulas
RangeFormula
H6=IF(COUNTIF(A6:G6,"X")+COUNTIF(A6:G6,"N/A")=COUNTA(A6:G6),"GO","NO GO")
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,517
Members
448,968
Latest member
Ajax40

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