0

I'm very new to excel programming. Currently I'm working on an excel worksheet and I need a formula that inputs on nth row of column A by reading what's in column F and/or D on their congruent rows. So far I have something like:

=IF(AND(D:ROW(n)=0,F:ROW(n)="x"),A:ROW(n)="e",IF(D:ROW(n)=0,"N","X"))
e.g.
  A B C D E F
1 e     0   x
2 N     0
3 X     2
Aze
  • 119
  • 1
  • 3

1 Answers1

1

Put this in A1:

=IF(D1 = 0,IF(F1="x","e","N"),"X")

And copy down.

The references are Relative, so as the formula is copy/dragged down they will change on their own.

enter image description here

Scott Craner
  • 148,073
  • 10
  • 49
  • 81
  • My final version of this is =IF(ISBLANK($D1)," ",IF($D1 = 0,IF($F1="x","e","N"),"X")) – Aze May 06 '17 at 22:37