On trying to perform select statement it throws syntax error as missing operand after ID

Hi,

Please help me with a solution for the below issue I am facing.

I have a datatable that has a column ‘Ledger ID’ with values. I need to filter and check if the the value ‘26269’ exist in the datatable. I used the select statement for that but it throws missing operand after ID error.

Syntax : datatable.select(‘Ledger ID = 26269’)

Add square brackets to fix the issue

datatable.select("[Ledger ID] = 26269")

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.