Hello all,
In column Y I have quote numbers. In column A I need to put the quote number from column Y if it begins with CP or DC and blank if not.
I tried this but the result is not right and returning (#VALUE!)
=IF(MID(Y12,1,2="DC"),Y12,IF(MID(Y12,1,2="CP"),Y12,""))
Not sure what I am...