Hi,
In code example underneath example a "dier" from sql table
has a "ras_id" and I want the name "naam" of the "ras" from the table
using a lookup on integer field "ras_id"
This goes wrong (same name every time). I try to use the disambiguation rules from te PA operators page but if I try things like
'[dbo].[dier]'[@ras_id] in stead of ras_id I get an error at the = operator and a delgation warning
I am clearly in need of some syntax education
;;UpdateContext(
{
ExportDiergegevens:
Concat(
Filter('[dbo].[dier]';TextInput16.Text in naam)
;Text(dier_id)
& ";" & Trim(Mid(naam;Len(TextInput16.Text)+1))
& ";" & LookUp('[dbo].[ras]';ras_id=ras_id;naam)
& Char(10)
)
})