01-06-2022 09:42 AM
I am trying to add two datapills which is decimal in MySQL and Number in my JSON Format input schema in My recipe while making API Calls
, but somehow its not able to add, i even tried formula mode, how to resolve this?
01-06-2022 01:09 PM
It looks like you’re trying to add these values in the totalBalance field. One of them is null and you can’t add null and a number. You would have to write the formula
(totalBalance.present? ? totalBalance : 0) + (deposit amount.present? ? Deposit amount : 0)
01-06-2022 01:09 PM
That should fix it
01-07-2022 07:11 AM
Thank you, Problem Solved.
01-06-2022 04:12 PM
It looks like you’re updating with a NULL value which isn’t allowed.
If you accumulate the data to a table, then you can check that table to find out.
01-07-2022 07:30 AM
Okay Roland, My issue is resolved but I will try that too. Thank You.