Trying to import multiple values in one cell comma separated: Arithmetic exception

0
I have an entity group associated with another called codes. One group can have multiple codes. When i upload data after configuring the template, the data is something like this in file:     While importing this throws arithmetic exception. In data grid, the second column is multi page select. How can such data set be imported?
asked
2 answers
0

Hi,

Take a look at below link for multiple values import

https://forum.mendix.com/link/questions/110718

https://forum.mendix.com/link/questions/113489

Hope it helps!!!

answered
0

Arithmetic exceptions are raised during run time by Java Virtual Machine when you try to perform any arithmetic operation which is not possible in mathematics. In most cases, when a number is divided by zero, the result is undefined and that is when this ArithmeticException occurs.

 

You can handle Java ArithmeticException in the following methods:

 

  • You should make sure the divisor isn't zero (0) before attempting any division.
  • You can handle the ArithmeticException using Java try and catch blocks.

 

answered