0
Change All Table Values by Button
I am looking for formula, that when a button is clicked, it can change the value of all data in the entire table to the same thing.
For Example: allrercords('Show Details' := false )
1 reply
-
You can loop through the records, but I don't think you can loop through the fields. You would have to include each field in the record loop like this...
for r in (select 'Show Details')
r.Field1 := false
r.Field2 := false
.
.
r.FieldN := false
end
Content aside
- 5 yrs agoLast active
- 1Replies
- 1457Views