Forum Discussion
John_Garritano0212
Feb 03, 2023Copper Contributor
repeat cell answer from one cell to another
I am putting a formula in cell c20 and I want that answer to also appear in cell h4. Is there a formula that will allow me to do that?
HansVogelaar
Feb 03, 2023MVP
In H4:
=C20
or, if you want H4 to look empty while C20 is still empty:
=IF(C20="", "", C20)
- John_Garritano0212Feb 03, 2023Copper Contributor