I have a table
A B C
1 Param1 Param2 Param3
2 1 NA NA
3 0 1 NA
4 0 0 NA
5 1 NA 1
Expected output
A B C D
1 Param1 Param2 Param3 Output
2 1 NA NA 3
3 0 1 NA 2
4 0 0 NA 1
5 1 NA 1 3 #(sum of A,B,C columns is Output basically)
So basically I want excel to treat NA as 1 . NA Is text here (its not error, its plain text NA).
I tried below but doesn't work
=sum(A2, B2,C2)
This code ignores NA. I thought NA is string so will be summed too. Can you guys help
