Forum Discussion
Roger509
Nov 19, 2018Copper Contributor
IFNUMBER FORMULA
Hi, Trying to make number populate in cell F5 if there is a number present for that row in column C (want same number to populate in F5). If there isn't a number in column C, want cells in column F to remain blank. Hopefully you can see file I tried to attached. Thanks.
- Detlef_LewinSilver Contributor
Hi
Simply:
=IF(ISNUMBER(C5),C5,"")
- Roger509Copper ContributorThank you, appreciate your help.