Error information

when i type below code

row(2)=Integer.Parse(ValueA) + Integer.Parse(ValueB)

am getting " option strict on disallows operands of type object for operator"=". use “Is” operator to test for object identity.

please solve this error to proceed me to add third column

@vignesh5048

Please do clarify your question, it’s unclear what you are trying to do here…

If the above is an assign, you should probably use this syntax :point_down:

row(2).ToString = Integer.Parse(ValueA) + Integer.Parse(ValueB)
1 Like