Forum Discussion
LachlanM06
Mar 16, 2022Copper Contributor
Duplication Error in Cells
Hey! Another Error Here..... So, In the 3 of a kind column, on the 7th row it reads 1. However it also reads 1 in the 2 of a kind column. I need a way so that this doesn't happen. In simple ...
- Mar 16, 2022
LachlanM06 You write an IF formulae for it like:
With E2 containing the 4-o-a-k formula, Enter this in F2:
= IF ( E2=1, 0, formula to check 3-o-a-k )
and in G2:
= IF ( F2=1, 0, formula to check 2-o-a-k )
Riny_van_Eekelen
Mar 16, 2022Platinum Contributor
LachlanM06 Why not check for 4-of-a-kind first. Then in the next column check is the previous column = 1. If so, then 0, if not check for 3-of-a-kind. etc.
- LachlanM06Mar 16, 2022Copper ContributorOk I get what you mean but it automatically changes so I can’t just change it. I need a formula. Thanks for the help though!
- Riny_van_EekelenMar 16, 2022Platinum Contributor
LachlanM06 You write an IF formulae for it like:
With E2 containing the 4-o-a-k formula, Enter this in F2:
= IF ( E2=1, 0, formula to check 3-o-a-k )
and in G2:
= IF ( F2=1, 0, formula to check 2-o-a-k )
- LachlanM06Mar 16, 2022Copper ContributorThanks so much! Will this still work in a IFS formula?