I need help on my Excel sheet. How can I declare the following IF condition properly?
IF
if A1 = \"n/a\" then C1 = B1 else if A1 != \"n/a\" or has valu
A possible alternative approach in Excel 2010 or later versions:
AGGREGATE(6,6,A1,B1)
In AGGREGATE function the first 6 indicates PRODUCT operation and the second 6 denotes "ignore errors"
AGGREGATE
6
PRODUCT
[untested]