![]() |
Sergey Kornilov admin 4/15/2020 |
You should be using single quotes only in SQL: active = 'Y' AND lang_code=':field.lang_code' AND encounterID=':field.encounterID' |
K
|
keithh0427 author 4/16/2020 |
I simplified the expression to just one variable and then placed that field on the same tab as the column with the Lookup Wizard. |
![]() |
Sergey Kornilov admin 4/16/2020 |
https://xlinesoft.com/phprunner/docs/sql_variables.htm active = 'Y' AND encounterID=':encounterID' |
K
|
keithh0427 author 4/16/2020 |
https://xlinesoft.com/phprunner/docs/sql_variables.htm If you need to refer to the field value simple use :fieldname and not :field.fieldname active = 'Y' AND encounterID=':encounterID'
|