Hello,
Scenario:
Working with two data sources within a new submit form. The main data source is a SharePoint list and the secondary is a SQL table. When a number is entered into field "A", Filed "B" (ComboBox) is auto populated with all SQL table rows associated with that number. When the user chooses a value in filed "B" (ComboBox), Field "C" should be auto populated with a value from the Quantity column in the SQL table in that same row.
"PartNumb3" is the ComboBox which determines what the value will be in field "C" but for some reason does not like the equals sign.
Below is the syntax for field "C":
If(Form1.Mode=FormMode.New, LookUp('[dbo].[tblTable01]',ReAuthNum=DataCardValue10.Text && Item = 'PartNumb3',RecQuantity),ThisItem.'Qty.')
Thanks in advance.