Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have this situation:

I have a range of columns. And I want to set indicator to '1' if any of the matching codes appear in that range. example:

C D E F G H   M
1 2 3 4 5 6   if any value in range C1:H1 lie between 1-4 then 1 else 0

Say Column C1:H1, I want to create column M1(an indicator) such that any of codes say (1,2,3,4) Appear in range C1:H1 its value is set to 1 else 0

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
335 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can add an IF function to cells in column G to do this:

=IF(OR(C1="1",D1="2",E1="3"),"1","0")

This currently only caters for 3 columns, so add additional arguments to the OR function, if you want to incorporate additional columns. All you then need to do is amend the "1", "2" and "3" etc for your codes and amend the ranges for your dataset.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...