Google-sheets – IF Cell = True, then retrieve (separate) Cell Value

formulasgoogle sheets

Cells:

T2 = Price to Pay
U2 = (Tick box)
V2 = =if(U2=True, "Paid", "To Pay")
W2 = empty

What I want to do is be able to tick U2 and have W2 contain the value of T2.
V2 works, so it does not need editing.

How can this be done?

Best Answer

paste this in cell W2: =IF(U2=TRUE, T2, )

1