Hi,
I’m getting DATA_TOLERANCE_EXCEPTION error while trying to ingest a dataset into Spice.
Error threshold exceeded for dataset (10000) (maxErrors = 10000)
10001 Skipped Rows
10001 rows where an undefined exception occurred.
However the error logs are not available. It writes: "This refresh didn’t generate an error report.
So, I created a test dataset where I replicate original dataset. The refresh part works fine until I create one spesific calculated field, and it is:
(Is low ASP)
ifelse({Cost from completed} < 20 or {Cost from target} < 20,‘Yes’,‘No’)
The sytanx is alright, but the refresh fails whenever I add this calculated field and refresh the dataset.
As I know, DATA_TOLERANCE_EXCEPTION error is related to data mismatch. However, {Cost from target} and {Cost from completed} are both decimals:

Cost from target: {ISM guidance (PCOGS)} / {ISM guidance (Units)}
Cost from completed: {cumulative_submitted_cost} / {cumulative_submitted_qty}
The fields in the formula (ISM guidance (PCOGS),…, cumulative_submitted_qty) are decimals. Defining these fields are working fine.
I edited the (Is low ASP) calculated field as:
ifelse(nullIf({Cost from completed}, 0) < 20 or nullIf({Cost from target},0) < 20,‘Yes’,‘No’) and it worked. But it’s not what I need, because this gives different results. (in the first scenario the results can be ‘no’ if the both of the fields are null, but this case makes them ‘yes’)
The refresh has been working fine for months until now, I can see the preview results however the refresh fails.
How can i resolve the issue?
Best,