Hi All,
I'm trying to populate the Item Property of an Edit Form Control via LookUp but I can't seem to make it work.
Here's my code:
LookUp(Customers, 'Customer ID' = "123")
But this code results in a Runtime Error:
"Error when trying to retrieve data from the network: Syntax error at position 11 in 'Customer ID eq '123''.
inner exception: Syntax error at position 11 in 'Customer ID eq '123''. clientRequestId: 03a87ad6-4aec-4246-9921-e675d787a79d"
I also tried replacing the spaces with x0020 as noted in the LookUp function guidelines,
LookUp(Customers, "Customer_x0020_ID" = "123")
This didn't show any error but it also doesn't return any data from the Excel file even though there's a record for 123 Column ID.
Note: I already know that using spaces in Column names isn't advisable but I would like to make this work in case I encountered
an already existing data source that has this specific flaw.
Kindly help me with this. Thank you.