0
Use aggregate functions in a single table database.
I have a database that is a single table. Is there a way that I can use aggregate functions within a single table? Am I missing something?
4 replies
-
While viewing the table, click any column header. To save changes across sessions, click wrench on the right, make changes, and click wrench again to save.
-
Does this let me fill a field with the aggregate sum of a different field? I guess that is really what I'm after.
-
Try a formula field with:
let t := (select Table1);
let s := sum(t.Number1);
s
-
This works perfectly, thank you!
Content aside
- 4 yrs agoLast active
- 4Replies
- 535Views