Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

change value in column A if value in Col C =N

Status
Not open for further replies.

vlree

IS-IT--Management
Jan 16, 2004
31
0
0
US
Is this possible without VBA?

If value in col C = N change value in col A = X

Thanks
 
Hi,

A spreasheet function CANNOT CHANGE ANYTHING!

A function merely returns a value.

So you could have ANOTHER column that would be
[tt]
=if(C1="N","X",A1)
[/tt]


Skip,
[sub]
[glasses] [red]Be advised:[/red] It's been reported that a wee psychic is roaming the countryside.
Small Medium @ Large! [tongue][/sub]
 
like this?

[COLOR=blue white]=if(c1="n","x","")[/color]

Place the formula in A1.

John

You try to concentrate while staring down the barrel of a loaded Thnikaman.
-Strong Bad

To get the best answers fast, please read faq181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top