Skip to main content
Forum
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
Plugins
Documentation
Setup
Databases
Automation
My account
Administration
Solutions
Webinars
Overview
Profile
RoSoft_Steven
RoSoft_Steven.1
Ninox partner
Belgium
www.rosoft.be
Follow
Joined
Sun Sep 30 17:18:00 UTC 2018
1634
posts
234
likes received
5
followers
Badges
Latest Posts
Re: Button to save a pdf when multiple print layouts are available
I would suggest to use a choice field, for example 'PrintLayout' with exactly the names of your printlayouts. Then use something like this in your PRINT button: let lay := text(PrintLayout);…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
2
Get help
Reported - view
Re: MultiLine Text field with multiple rows alongside in form
@Bernd Krell Is the field called "Notes" or Note" ? Maybe that's the reason?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: date change
Did you report this to support@ninox.com already? Seems like a bug. can you report back what the solution was here please?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Can't see records, while they can be searched and found...
@Bas Jansen Can you post your data model and any fields to learn more about your database?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Avoid new records
This can only be done by using the user role permission in the 'Create new records' setting of your table. Which is only available in cloud subscription.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Avoid new records
If you only want one record in a table (for example if you use a "Settings" table) , you can use 'delete this' (without the quotes) in the "trigger on new record" field of your table.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Filtering data based on manual dates entered.
Try this: count(select Clients ['Pretrial Termination Date' >= startDate and 'Pretrial Termination Date' <= endDate and 'Termination Reason' = 1])
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Upload file to Ninox via API
Maybe these videos will help you: https://www.pscp.tv/NinoxDB/1eaKbQrjbnkxX Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: New record code needing a tweak
Does changing the last line in your code to: popupRecord(newRec,"INPUT") works for you?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: erase, remove a date from a date field
Event_date := null "null" makes the field empty.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Formula to Include Multiple Filters from Choice Fields
Does this gives the correct result?: count(Clients['Termination Reason' = 1]) + count(Clients ['Termination Reason' = 4]) + count(Clients ['Termination Reason' = 6]) You can even expand to…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Code the top search - Help
@Jarno Vande Walle I see in your code the first 'Datum' is not converted with the date function, maybe that's the reason.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Code the top search - Help
@Jarno Vande Walle Try this formula: let xBeg := Begindatum; let xEnd := Einddatum; select Prestaties where date(year(Datum),month(Datum),day(Datum)) >= xBeg and date(year(Datum),month(Datum),…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Custom HTML Dashboard
Thanks for sharing! Looks very good!
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Learn and share
Reported - view
Re: add an image to the body text in SendEmail
@Mel Charles Did this work out for you?
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Display value from unlinked table
Using the select() function can give you the wanted results i guess: last((select Currency.RATES).RATE) or something like: last((select RATES [Currency = USD]).RATE) Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Get help
Reported - view
Re: add an image to the body text in SendEmail
@Mel Charles @Alan Cooke (And @support) 😝 Ninox support have come back and said - currently it is not possible to make this work :😟 This code works with me: let sha := shareFile(record(Settings,1).…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: sibling tables
@UKenGB said: Unlike SQL, one cannot specify the fields/columns returned. Yes you can return a Json-formatted list using a select function and even specify custom names to the fields: let x :…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: sibling tables
@UKenGB can you post a sample database we can work on ? Or screenshots of what you mean? Are the number of records the same in both childs c1 and c2? The only thing they have in common are the number…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: [HELP] Ninox Can't Perform Basic "Sumif" Function
You can shorten the first part like: sum('Line Items'.'Item Cost') since the line items is a child table. If this gives the right result but the second doesn't, then for the second formula try :…
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Storage Full
Maybe contacting support@ninox.com if they temporary can raise the limit so you can make backups.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: need help with the replace function!!
Change let myText := myRichText; to let myText := raw(myRichText); Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Search by Suppier from a Choice field
@Rafael Oops, my mistake, glad you get it to work. Thanks.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
Re: Search by Suppier from a Choice field
Not sure what the field Clave does but looking at your screenshot you might want to try: let search := lower(Supplier); select DB where lower(text(Proveedor)) = search Steven
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
1
Get help
Reported - view
Re: add an image to the body text in SendEmail
I gues you can use the function shareFile() on your imagefield and use this in your body like kinda displaying an image in html page.
RoSoft_Steven
Ninox partner
RoSoft_Steven.1
3 yrs ago
Get help
Reported - view
1
20
21
22
23
24
66
Ninox-Website
Overview
Learn and share
Get help
Service status
Plugins
Documentation
Setup
Installed apps
Public Cloud
Private Cloud
On-Premises
Plugins
Databases
Tables
Table relationships
Fields and elements
Pages
Views
Import and export
Modules
Printing
Templates
Use cases
Automation
Performance
Scripting
Functions
API
My account
Subscriptions
Administration
Private Cloud Administration
Manage workspaces
Manage collaborators
Access permissions
Backups and storage
Process monitor
Solutions
Ninox E-Invoice
View all topics