Link to home
Start Free TrialLog in
Avatar of jjl1210
jjl1210

asked on

MS Excel formula

I’m looking to format cell A3 to have the same value as A1 but if the value in A1 is the same as any cell in column B I want it to be blank.  With this formula, =IF(A1=B1," ",IF(A1<>B1,A1)) I can do it but only in the B1 cell not a range.
ASKER CERTIFIED SOLUTION
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
=IF(ISERROR(MATCH(A1,B:B,0)),"",A1)

Open in new window

emmm, based on requirement, or:

=IF(ISERROR(MATCH(A1,B:B,0)),A1,"")

Open in new window

?
Avatar of jjl1210
jjl1210

ASKER

Thanks so much for the help.