Executioner
Board Regular
- Joined
- Sep 26, 2005
- Messages
- 166
I'm having an issue getting the correct format for a nested IF statement.
In Cell C are text values such as:
EDD2059308
18676
N1878
EDD2067899
15678
12487
N0899
In H2, I have the following nested IF statement:
=IF(LEFT(C2,3)="EDD",1,0,IF(LEFT(C2,1)="N",3,0))))
If it's EDD it should return a value of 1
If it's a number it should return a value of 0
If its N it should return a value of 3
The error I get "you've entered too many arguments for this function"
I'm using excel 2003.
In Cell C are text values such as:
EDD2059308
18676
N1878
EDD2067899
15678
12487
N0899
In H2, I have the following nested IF statement:
=IF(LEFT(C2,3)="EDD",1,0,IF(LEFT(C2,1)="N",3,0))))
If it's EDD it should return a value of 1
If it's a number it should return a value of 0
If its N it should return a value of 3
The error I get "you've entered too many arguments for this function"
I'm using excel 2003.