0
Sample printTable with Filter Criteria
Somethin don't work in this script on the botton.
When change the criteria, and press the button It doesn't show me the selected criteria, but when click again yes it show me the criteria.
do as server
let x := 'Date Start';
let y := 'Date Finish';
(select 'AUDIT Plan').('To Print' := false);
for i in select 'AUDIT Plan' where 'RE-Schedule Date' >= x and 'RE-Schedule Date' <= y do
i.('To Print' := true)
end
end;
printTable("Audit Plan", "Print Re-Schedule Audits")
7 replies
-
I copied your script created your data/info
Had no issue with the button itself but it just ignored the script to update "to Print" until I changed false and true to 1 and 2. then had no issue.
do as server let x := 'Date Start'; let y := 'Date Finish'; (select 'AUDIT Plan').('To Print' := 1); for i in select 'AUDIT Plan' where 'RE-Schedule Date' >= x and 'RE-Schedule Date' <= y do i.('To Print' := 2) end end; printTable("Audit Plan", "Print Re-Schedule Audits")
Content aside
- 2 mths agoLast active
- 7Replies
- 61Views
-
3
Following