Need to use the symbol ± ("+ or −") in a formula.
Plus or Minus
=IF(RC[-3]="","",IF(RC[-4]+0.5=OR(RC[-12],RC[-10],RC[-8],RC[-6]),“Plus”,“Minus”))
What I am trying to achieve is that - if the contents of cell RC[-4] plus 0.5 equals the contents of any (as in OR group) of cells RC[-12],RC[-10],RC[-8],RC[-6], then it shows “Plus” and if not, it shows “Minus”. Current result, it only shows “Minus” when it should be “Plus” in some cases (rows).
I’ve tried various ways of achieving this but have failed. i.e. (1.) the above formula, (2.) to put the (Excel) ± symbol in IF(RC[-4]±0.5 into formula, (3.) =IF(RC[-3]="","",IF(OR(RC[-12],RC[-10],RC[-8],RC[-6])=RC[-4]+0.5,“Y”,“DIFF”))
Result “DIFF” even when it should be “Y”.
(By the way I use R1C1 because it is visually logical. It helps me in writing my spreadsheets which have hundreds of columns of different formulas)
Can anyone see/tell me what I am doing wrong and suggest a solution.
Thanks.