-
How to make a dashboard display values per calendar week?
Hey everyone! I'm working on a dashboard for a database at work. We have milestone (let's call it MS_XY) with dates set, and I can't find out how to display the following:…
-
Draw a line between a few points (iow draw a printable chart)
Hi all! As you can see in the picture there are a few line charts, with lines that connect some points. Those "points" (x) are generated via an if-then algorithm (if score = 19 then "x" else "-" end…
-
Wrong result of multiplication
What could be the reason if I am trying to make a simple multiplication 415 * 1.305 the result is 541.5749999999999 instead of 541,575? What's wrong with the math?
-
Sum service amounts from three tables based on dates
Hello. I pay my employees weekly based on how much they bring in for services, products and off-site events (three separate tables) throughout the week. I am using a date field.…
- Answered
-
Copy to clipboard: Multi-line referenced table
Hi Folks, Here's a doozy (well, hopefully not). I'd like to add a 'Copy' button below a referenced table "Project Details". Within that table, I'd like to copy a couple of fields:…
-
Beginner scripting resources?
I’m trying to teach myself about scripting commands. But I’m having trouble finding full, complete answers. For example, the Switch Statement. In the Ninox Intermediate Tutorial #3, Switch Statement,…
- Answered
-
A BIG thank you!!! - please add your show of appreciation.
@Jacques TUR - Thank you so much for all that you have accomplished with Ninext. I was motivated to post this morning due to the element copy and paste feature recently added.…
-
Select records through Dynamic Multiple Choice Field
Hello, I've been looking for a solution for a couple of days but I can't find it even if it's a simple thing. I have a TabCategories table. I have another table, TabCustomers, where there are,…
-
Problems with condition statement in a while do structure
Hi there! Hope you can help me out with this: So, I'm building a Many-to-Many relationship between two tables, one for journal entries ("Asientos por Registrar") and another for Vendor Invoices…
-
Auto-populate pricing from another table?
Ok Ninox wizards, now I'm trying to auto-populate some pricing and job details. Here are the top level details: Main table is 'Job Status Log' which has 100s of job entries that are connected to my...…
-
Auto-populate Music Library Fields
I am working on databasing all of my sheet music and would like to auto-populate a field on one table with information from two other tables if possible.…
- Answered
-
Get count of chosen values from different table
Hello, The formula below counts the number of records in the table Timetable where the choice field Jim has been chosen the value "norm" (it works). count(select Timetable where text(Jim) = "norm")…
- Answered
-
Auto-populate tax depending on another dropdown field selection?
I'm wondering if it's possible to tell Ninox to apply tax based on my 'job type' dropdown field? For example, if I pick 'shipping' that would be taxable,…
-
Ninext : Debug Tracer
Hello everyone, For some time, I wanted to offer you a possibility to debug your programs. I am happy to present you a first debugging tool. It's simply a tracer to display the messages coming from…
-
Pass current viewing record Id to a view element column formula
Hi all - I have a table that has a view element. I'm trying to do formulas in the view element that requires data from the record I'm viewing. As we know,…
-
Conditional formula to calculate 'taxable' and 'non taxable' items...
Hello, I'm trying to figure out how to include two fields that calculate the sum of taxable and non-taxable items. If you look at the attached image, you'll see that there's a field for the base…
-
Count of records in joined table
I have a table for our Corporate Events we plan called Event Details. There is a table named Staff that is joined to it containing all of our staff. One event could have multiple staff and a single…
-
Conditional Formatting Advice Please
The screenshot here shows I having grouping selected and a count #. For sake of clarity, I would like to emphasize the #Count so that it is more prominent for the reader when records are exported as…
- Answered
-
WISH LIST: Easy one!
DIALOG function that accepts up to 255 chars of text.
-
QR Code management
Hello everyone. I would like to start managing QR Codes in my database. I saw on the forum that creating a QR Code is actually quite simple. “It is enough”, in summary,…
-
Add elements to a choice field
Hi to all Is there a way to add, edit, delete elements in a choice Field through a formula? ex. Field 1 (formula field) I assign values in a formula: let x := "Napo" let y := "Orso" let z :…
-
Choice Field Trigger
Hi to all! I have got this structure: MasterSearchTable - fields: Choice Dynamic MusicBrainz ID MBIDsTable - fields: MBID Description as you can see the Choice Dynamic field is correctly connected to…
- Answered
-
Has anyone wanted to hide the add new record button on the popup link?
simply add a formula with CSS and add the following .stringeditor-button2 {display: none;}
-
Matching Phone Area Codes to Region
So, for a lot of Data I receive, I don't have any location material besides one's phone area code. I know that the area code is not the most accurate in todays cell-phone age,…
-
join function to get an ordered output
Hi to all i have a formula: let data := text(response.result.relations); let bandData := parseJSON(data); let artists := ""; for i in bandData do let artistType := i.…