In a data card (bound to field CustomerID), I have a text box.
If I hard code a lookup function like this, it shows the Customer Code:
LookUp('[dbo].[Customer]',CustomerID=16,CustomerCode)
However if I instead pass the Parent.Default value to the lookup function, it doesn't work:
LookUp('[dbo].[Customer]',CustomerID=Parent.Default,CustomerCode)
Thanks,
Dave