Skip to main content
Privacy
Contact
How to enable Javascript
Sign Up
Log in
Welcome to the Ninox community
Search all topics or
ask a question
Learn and share
Get help
Service status
Documentation
Solutions
Setup
Databases
Automation
My account
Administration
Webinars
Overview
Profile
Alain Fontaine
Alain_Fontaine
426
89
2
Joined: Thu Jun 04 08:38:45 UTC 2020
Follow
My Posts
Latest Posts
Re: incrementation
Is not the "numcommanda" field defined as a "Text" field? If you need a field to hold numbers, it should be defined as a "Number" field.
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Advice on how to make Field List of Dates
I am sure to fully understand your request, but maybe the concat() function could be a step towards the solution.
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Formula Field for Date Calculation showing time as well
There is a "days()" (with "s") for this very purpose.
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Help with filtering and sum between tables
I suppose that you just replaced the date(...) function by the name of your variable. It does not work because, inside a "select" statement, the context is not the current record of the table you are…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: illusion of Inserting new lines into middle of child table ((invoice/order/quote) lines)
Hint: This: max((select QuoteLines).QLnum) gives the largest value of QLnum in the entire QuiteLines file. This: max(QuoteLines.QLnum) should give the largest value of QLnum among the records linked…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Custom maxId reset after 200
Solutions based on the Ninox Id are robust, since it is guaranteed to be unique and never reused. But if you delete a record, its number is of course lost forever, per the non-reuse.…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Custom maxId reset after 200
It should work in the same place, Trigger on create. Another possibility would be to make "ID Pratica n." a formula field, defined as: let n := number(Id) - 1;1 + n - floor(n / 200) * 200
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Common field in many-to-many relationship
That's why I suggested to put the attribute as a field inside the Bridge table. Nothing prevents you from adding data fields in the Bridge table in addition to the two reference fields,…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Common field in many-to-many relationship
How to set up? Since the "unique attribute" is a characteristic of the relation between the Keyword and the Article, it must be stored as a field in the bridging table.…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Are the numbers of fields limited ?
Just another idea: you can start by moving the last field listed in the right column, and proceed from bottom to top. So, once that last field is in place,…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Custom maxId reset after 200
One option could be to build the needed serial number by using the record reference number, the numeric part of the automatically created record identifier.…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Are the numbers of fields limited ?
The problem is that it is very difficult (but not impossible) to add an element at very end of either list when the list is filled to the bottom. And the trick is to add an irrelevant element at the…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Are the numbers of fields limited ?
What I do in such a situation: I add a "Line break" layout element at the bottomm of the list. I can then add whatever I need before that Line break. When the operation is completed,…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Show Ninox's Unique ID Number In Field
Does this give what you need: "ABCD" + format(number(Id), "000")
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Creating a new record in a linked table using code
You are almost there... Two things: - use the "record()" function to create a record handle for the desired record in "Locations"; - set the reference field itself - not the ID of the referenced…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Table - grouped by item, sum value, rate?
I suppose that "Grouped Item" means that the same value of ITEM_ID may happen in several records. In the formula below, replace "Table1" by the actual name of your table.…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Help with counting number of status line in subform
I am glad that you git the result you expected. I don't understand why styled() does not work, but if you need to only show a colored patch with no text in it, color() is fine.
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Help with counting number of status line in subform
Sorry, I had not paid enough attention to the definitions of the various fields. The formula below, as the definition of the "Alert" formula field, should work better: styled("",…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Not getting past else
Thank you for taking the time to write down that explanation. The code below should do what you expect at this point. It works by taking advantage of the existence of a relation between the two…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Not getting past else
OK, from the context I suppose it is 1:N from Pay to PayChecks. And so, among the fields of the Pay table, there should be a field named (by default) "PayChecks".…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Conversion date en chiffre
Ben oui: comme écrit précédemment, la fonction days('debut', fin), avec "s" à la fin, à ne pas confondre avec la fonction day() sans "s", renvoie un entier qui est le nombre de jours écoulés entre…
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Not getting past else
Trying to understand the context... Is the button in the "PayChecks" table, or in another table? if in another table, is there a relation whith the "PayChecks" table?
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Conversion date en chiffre
Il y a une fonction pour : days(date_debut, date_fin).
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Help with counting number of status line in subform
"Alert" is a function field, yes? styled("", if cnt(Tracking[Status = 1].Process) >= 2 or cnt(Tracking[Status = 1].Conduct) >= 2 then "red" else "blue")
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
Re: Help with counting number of status line in subform
Just a hint? Maybe something like: cnt(Tracking[Status = 1].Process) > 1 or cnt(Tracking[Status = 1].Conduct) > 1
Alain Fontaine
Alain_Fontaine
4 yrs ago
Get help
Reported - view
1
12
13
14
15
16
17
18
Ninox-Website
Overview
Learn and share
Get help
Service status
Documentation
Solutions
Ninox E-Invoice
Setup
Installed apps
Public Cloud
Private Cloud
On-Premises
Databases
Tables
Table relationships
Fields and elements
Pages
Views
Import and export
Modules
Printing
Templates
Use cases
Automation
Scripting
Functions
API
My account
Subscriptions
Administration
Manage workspaces
Manage collaborators
Access permissions
Usage overview
Process monitor
View all topics