0
Problem Dynamic choice
I have some code
for d in select Transport where Oprindelse = 1 and 'Mål' = 2 do
e := e + 1;
k := d.Km;
tid := d.'Rejsetid i minutter';
void
2 replies
-
I have som code
for d in select Transport where Oprindelse = 1 and 'Mål' = 2 do
e := e + 1;
k := d.Km;
tid := d.'Rejsetid i minutter';
voidworks fine and return records where Oprindelse =1 AND 'Mål'=2
but if use variables it is not working
let o :=1
for d in select Transport where Oprindelse = o and 'Mål' = 2 do
e := e + 1;
k := d.Km;
tid := d.'Rejsetid i minutter';
voidOprindelse is a Dynamic choice files in the DB
???
-
Nevermind.. My mistake !! Works
Content aside
- 3 yrs agoMon, February 14, 2022 at 5:27 PM UTCLast active
- 2Replies
- 105Views