-
Printing PDFs from an Android device.
PDF printing is not supported by Android. I think it would be a nice thing to include in the next version of Ninox for Android.What do you think about it?Eric
-
Printout charts
Is it possible to print out charts. Basically have multiple charts for a client and want to printout in a template.
-
Is Ninox Stable in Mac OSX 10.2.5?
In Trial mode (online version I think) I try to add a new field and make it a maximum height, multiline field, which I do by entering 200 in the maxium characters attribute.…
-
Make a function writable
Hi, sorry but I am not familiar with coding... I need a function to give a result if TRUE and to leave blank (so that I can insert a different number each time) if FALSE.…
-
Dialog with text input
it would be really useful to have a dialog in the scripting language which prompts a user for some text.
-
Duplicate a field?
How can I duplicate a field? I've set up an email field and filled it with a template body with linked fields. Now I'd like to use that as a template to modify it to create another email field.…
-
Like COUNTIFS in Excel
Team, How do I count the number of times a criteria is met in a field. Basically, the same as COUNTIFS in Excel. V/r
-
How to create recurrent events?
How do you create recurrent events entriy such as salary?
-
how to import an excel sheet
how to import an excel sheet
-
end expected:
I seem to get the end expected error in the below code, but cannot see why.
-
Extract text from linked table
How do I extract and splice the record WEVBrandUID_0273 in the field WEV_Brand_UID in the table 'EVNews' from linked table 'EV Strategy' ? Thanks
-
http Issue sending two json-objects
Hi all The endpoint I call (method: PATCH) expects json-objects with a line break. {"code": "test2", "parent": null}{"code": "test_adriano", "parent":null, "labels":{"en_US":…
-
Set color of text in a formula
"1 -" + item('Brand of Competitors', 0) + " " + item('Model of Competitor', 0) + ", 2 -" + item('Brand of Competitors', 1) + " " + item('Model of Competitor', 1) Hi,…
-
Calendar
Dear Sir, Is there a possibility to repeat an entry weekly ? The anniversary only takes repeats on a yearly basis ! I need weekly , every second week , monthly event repeats Just lazy I guess :…
-
How can I copy from a text field to a date field?
The text looks like dates but doesn’t sort properly.
-
How do I go Back to see the Parent form ?
let p := record(SoftClinincPatientFiles,1);openFullscreen(p) I am in a subform This takes me to the correct screen (Parent) but record 1 How can i tell it to got to the Current Patient Id Parent form…
-
Help with creating an automated 'Invoice Status' based on date fields.
I have a 'status' field which is generated by a formula as follows, but not quite working: let nw := today(); let dd := 'Date Due'; let po := 'Paid on'; let rm:= 'Reminder Date';…
-
Location Function
How can I, automatical get the address from a table to input in the location maps funciton?
-
Get history records via API?
Hello, Is it possible to get the history records via API ? Regards, Guilherme
-
Moving DB from mac desktop to ninox cloud acct
Hi there I had bought mac desktop version and then I got a free trial cloud account (My Team). In my desktop app I can see and manage dbs created in the cloud (synchronized),…
-
Mac desktop and cloud
I'm using the Mac version, and it's working well. I would like to share some of the tables so that others can read them, and possibly download files. Do I have to get a Cloud account to do that,…
-
Convert
Is it possible to convert a Text field into a DAte field and with the correct format if possible ie DD/MM/YYYY ? I imported the entire database but erroneously did not set the date field to date!
-
Array formula
let arr := [item(URL2.'1 - EV master file', 0)];for p in URL2.'1 - EV master file' doif p.UID_Key = 'Link 3 ID' thenarr := array(arr, [p])endend;if 'Link 3 ID' > "" thenarr := slice(arr, 1,…
-
Filter to show only one unique record if multiple same records in field
How should I state a filter to show only one instance of each record in the UID_key column. Thanks
-
Search and add a field from another record in same table to a record
let me := this;if LinkUrl1 thenfor i in select '1 - EV master file' where UID_Key = me.LinkUrl1 and Id != me.Id dolet myResult := (create URL);myResult.('1 - EV master file2' := me);myResult.…