Programming Language
Good Evening
i just wondered what language Nino used for scripts etc. Is it sql?
Are there and tutorials or references?
thank you
7 replies
-
Ninox has its own language, which is similar to Javascript and sql. When assigning values be sure to use := instead of =.
There is a "Reference of Scripting Functions" at: https://ninox.com/en/manual/calculations/reference-of-functions-and-language
An "Introduction to Programming in Ninox" video is at: https://www.youtube.com/watch?v=dMx847g2g7o
There are many learning videos available at: https://www.youtube.com/c/NinoxLearning/videos
Welcome to Ninox!
-
Thanks that's brilliant.
i was wondering how I could sum a field if the field name was equal to certain text
thanks a million.
-
let t := (select Table1);
if 'Certain Text' = "Field1" then
alert(sum(t.Field1))
else
if 'Certain Text' = "Field2" then
alert(sum(t.Field2))
end
end
-
Ok thanks. How would I display all the totals I have 15 different ones.
-
Before you do too much work, are you aware that in the default table you can click the column header of any number column and select "Sum". You can also add or remove column(s). Plus there is a "Grouped" option that provides sub-summaries by group. I use the grouped option when importing payments received. It automatically sums them by date, so it is easy to see how much money came in each day.
-
Ok will check that out. I was just trying to create a trial balance view. I have a ledger with about 15 accounts and was trying to total and display credits and debits for each account as a balance sheet.
-
There are numerous learning videos here (created by a CPA):
Content aside
- 4 yrs agoLast active
- 7Replies
- 1242Views