0

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

null
    • Choices_Software_Dean
    • 3 yrs ago
    • Reported - view

    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!

    • Faldo
    • 3 yrs ago
    • Reported - view

    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.

    • Choices_Software_Dean
    • 3 yrs ago
    • Reported - view

    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

    • Faldo
    • 3 yrs ago
    • Reported - view

    Ok thanks.  How would I display all the totals I have 15 different ones.

    • Choices_Software_Dean
    • 3 yrs ago
    • Reported - view

    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.

    • Faldo
    • 3 yrs ago
    • Reported - view

    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.

    • Choices_Software_Dean
    • 3 yrs ago
    • Reported - view

    There are numerous learning videos here (created by a CPA):

    https://www.youtube.com/c/NinoxLearning/videos

Content aside

  • 3 yrs agoLast active
  • 7Replies
  • 1219Views