cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X

What is the query used to filter infotable for missing values in particular Columns.

AP_10343008
12-Amethyst

What is the query used to filter infotable for missing values in particular Columns.

What is the query used to filter infotable for missing values in particular Columns.

1 ACCEPTED SOLUTION

Accepted Solutions
DanZ
15-Moonstone
(To:AP_10343008)

Variant 1 - MissingValueFilter Snippet (Resources --> Infotable Functions --> MissingValueFilter)

// result: INFOTABLE
let result = Resources["InfoTableFunctions"].MissingValueFilter({
	inclusive: undefined /* BOOLEAN {"defaultValue":true} */,
	fieldName: undefined /* STRING */,
	t: undefined /* INFOTABLE */
});

 Variant 2 - Query for missing values Query Parameter for Query Services (ptc.com)

const query = {
    "filters": {
        "type": "MissingValue",
        "fieldName": "OrderQuantity"
    }
};

View solution in original post

1 REPLY 1
DanZ
15-Moonstone
(To:AP_10343008)

Variant 1 - MissingValueFilter Snippet (Resources --> Infotable Functions --> MissingValueFilter)

// result: INFOTABLE
let result = Resources["InfoTableFunctions"].MissingValueFilter({
	inclusive: undefined /* BOOLEAN {"defaultValue":true} */,
	fieldName: undefined /* STRING */,
	t: undefined /* INFOTABLE */
});

 Variant 2 - Query for missing values Query Parameter for Query Services (ptc.com)

const query = {
    "filters": {
        "type": "MissingValue",
        "fieldName": "OrderQuantity"
    }
};
Top Tags