C8 is either blank, or has a 1,2,or 3 in it. I want R8 to populate with either a 1 (for 1,2, or 3) or be left empty.
I'm self taught and have figured out how to make one number populate the way I want, just not all 3.
Thanks so much!
C8 is either blank, or has a 1,2,or 3 in it. I want R8 to populate with either a 1 (for 1,2, or 3) or be left empty.
I'm self taught and have figured out how to make one number populate the way I want, just not all 3.
Thanks so much!
How about this in R8:
=IF(C8="","",1)
Hope this helps.
Pete
Since C8 has only those 4 possibilities,
=IF(ISNUMBER(C8), 1,"")
or even
=IF(C8, 1, "")
ChemistB
My 2?
substitute commas with semi-colons if your region settings requires
Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)
Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble
Try this
Formula:
Please Login or Register to view this content.
If you like my answer please click on * Add Reputation
Don't forget to mark threads as "Solved" if your problem has been resolved
"Nothing is so firmly believed as what we least know."
--Michel de Montaigne
Thanks so much! Solved with a quickness! Y'all are great!
Orrrrrrrrr
=IF(C8=1, 1, If(C8=2,1, IF(C8=3, 1, "")))
or
IF(C8<>0, 1, "")
or
IF(OR(C1={1,2,3}),1,"")
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks