Forum Discussion
samanthahogg
Mar 07, 2025Copper Contributor
HELP!
What function can i use or how can i make the product of column O times column P populate in column H ONLY IF column L says "workover"?
- Harun24HRBronze Contributor
Use IF() function. Try-
=IF(L4="WORKOVER",O4*P4,0)
Put the above formula in H2 cell then drag down as needed.