- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2024 12:31 AM
Hi all,
I have a function field running on a table that adds two other field values like so:
glidefunction:add(field1, field2);
What I want to do is simply to do add a third field too, something like:
glidefunction:add(field1, field2, field3);
OR
var op1 = glidefunction:add(field1, field2);
glidefunction:add(op1, field3);
Neither of these options work. What should I do? I don't want to use a calculated field as it will always execute, not only at runtime. I also don't want to use a display BR or client script, for reporting purposes.
Regards,
Kim
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2024 01:06 AM
Have you tried something like this?
glidefunction:add(field1, add(field2, field3));
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2024 01:06 AM
Have you tried something like this?
glidefunction:add(field1, add(field2, field3));
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2024 12:12 AM
This worked, thanks a lot!