May 04 2024 07:47 PM - edited May 04 2024 07:59 PM
have cell b8 with team 1
cell b10 with team 2
if cell c8 has a 2 need to fill cell d9 with cell c8 info
or if cell c10 has a 2 need to fill cell d9 with cell c10 info
if neither has a 2 need to have cell d9 blank.
if cell d9 has cell c8 info want cell b77 filled with cell c10 info or
if cell d9 has cell c10 info want cell b77 filled with cell c10 info
any help or ideas have had it figured out if i put a hidden cell with an extra formula trying to not have that.
May 05 2024 01:39 AM
SolutionTo achieve this without using a hidden cell, you can use nested IF statements combined with IFERROR function to check the conditions and fill the cells accordingly.
Here is how you can set up the formulas:
In cell D9:
=IFERROR(IF(C8=2,C8,IF(C10=2,C10,"")),"")
In cell B77:
=IF(D9=C8,C10,IF(D9=C10,C8,""))
Here is how these formulas work:
These formulas should dynamically update based on the values in cells C8 and C10, without the need for an extra hidden cell. The text and steps were edited with the help of AI.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and Like it!
This will help all forum participants.
May 05 2024 12:56 PM
I didn't get much that made sense following the instructions! It seems D9 will contain 2 (presumably match points?) either way, and B77 will contain the opposite result. The sort of thing I would go for is
E9 (round1Winner)
= IFS(team1=2, team1info, team2=2, team2info, 1, "")
B77 (round2team1)
= round1winner
but, probably, that merely shows that I have failed to understand the requirements.
May 06 2024 04:52 PM
May 05 2024 01:39 AM
SolutionTo achieve this without using a hidden cell, you can use nested IF statements combined with IFERROR function to check the conditions and fill the cells accordingly.
Here is how you can set up the formulas:
In cell D9:
=IFERROR(IF(C8=2,C8,IF(C10=2,C10,"")),"")
In cell B77:
=IF(D9=C8,C10,IF(D9=C10,C8,""))
Here is how these formulas work:
These formulas should dynamically update based on the values in cells C8 and C10, without the need for an extra hidden cell. The text and steps were edited with the help of AI.
My answers are voluntary and without guarantee!
Hope this will help you.
Was the answer useful? Mark as best response and Like it!
This will help all forum participants.