When import data triger update not working
Hi, a bit of a frustrating problem I have is when importing data it does not trigger the event in the field that the data is imported. How can I ensure that the trigger event happens?
3 replies
-
Best was is to use a button I think. When importing, triggers won't fire....
-
It should read
Best way, is to .....
-
The challenge is I have. 210 different instances for each month from 2013 to 2030 each with seperate code such as this.
for i in select USA do
if i.'Apr - 15' > 0 then
let myAm := i.'Apr - 15';
let myCount := cnt(select USA where 'Apr - 15' > myAm);
i.('R Apr - 15' := myCount + 1)
else
i.('R Apr - 15' := null)
end
end;
for i in select USA do
if i. 'Apr - 15' > 0 then
let myAm := i.'2015';
let myCount := cnt(select USA where '2015' > myAm);
i.('R 2015' := myCount + 1)
else
i.('R 2015' := null)
end
end
Content aside
- 4 yrs agoLast active
- 3Replies
- 868Views