Forum Discussion
UserName3000
Nov 26, 2023Copper Contributor
Adding based on conditions
Hello, I'm trying to calculate "total owed" total owed = 2024 balance + "Prevs amnt owed UNLESS there is a "Client estimate" in which case total owed = Client estimate + "prevs amnt owed" see be...
- Nov 26, 2023
=E4+IF(D4="", C4, D4)
HansVogelaar
Nov 26, 2023MVP
=E4+IF(D4="", C4, D4)
UserName3000
Nov 27, 2023Copper Contributor
Works perfectly, thanks!