You are right about the subquery which is not nessassary but i wanted to be sure that there are no NULL values in the table I provide to the Box Whisker. The table name needs to be in double quotes…
SELECT Cavity, round(Label_back,1) AS Label_back, Limitmin_LB,Limitmax_LB
FROM "3DData"
WHERE Label_back IS NOT NULL
What DB are you using?
If you must use the double quotes, then the table was created with a quoted identifier, in which case you must insure the case sensitivity is correct. Does the table name "3DData" match the table name exactly and for case?
If you can avoid using quoted identifiers I would recommend it. It is generally not best practice to use them and some tools may not support their use. Use unquoted identifiers and everyone's life will be easier.
Your query checks for NULL in Label_back, but a null value in Limitmin_LB or Limitmax_LB can also cause this error. I’d try changing your WHERE clause in the query browser to
WHERE Label_back IS NULL or Limitmin_LM IS NULL or Limitmax_LB IS NULL
In that case, can you file a support ticket? I’ve looked at the code and I don’t see any way this error can come up without a NULL value somewhere in your data (I missed Cavity in your query – hopefully there are no NULLs there). Because I can’t see a way this can happen, I have no idea how to replicate the issue. If you file a ticket with support they can work with you to figure out how this is happening and we can fix it.
Hi Kathy i have made a simple Memory tag in an empty project and opened a Box Whisker plot but it results in exactly the same failure. Is it possible for you to check if the failure also exists in the last version of Ignition?