![GroupSquareWolf_0-1663088934362.png GroupSquareWolf_0-1663088934362.png](https://community.jmp.com/t5/image/serverpage/image-id/45429i3CB4A47E2746F85F/image-size/medium?v=v2&px=400)
In this example, ;"Sum of A+B+C" calculates sum of :A + :B + :C in each row with this formula:
If( Is Missing( :A ), 0, :A ) + If( Is Missing( :B ), 0, :B ) + If( Is Missing( :C ), 0, :C )
If I change the specific column names to with column number, the script is not working anymore and generates an error
If( Is Missing( Column( 1 ) ), 0, Column( 1 ) ) + If( Is Missing( Column( 2 ) ), 0, Column( 2 ) ) + If( Is Missing( Column( 3 ) ), 0, Column( 3 ) )
![GroupSquareWolf_2-1663089213081.png GroupSquareWolf_2-1663089213081.png](https://community.jmp.com/t5/image/serverpage/image-id/45432iD966F2ABE18B9589/image-size/medium?v=v2&px=400)
What am I missing here?