Skip to main content
Ninox-Homepage
Datenschutz
Kontakt
How to enable Javascript
Registrierung
Einloggen
Willkommen in der Ninox-Community
Suche nach allen Themen oder
stelle eine Frage
Tipps und Tricks
Hilfe erhalten
Servicestatus
Dokumentation
Setup
Datenbanken
Automatisierung
Mein Account
Administration
Lösungen
Webinare
Übersicht
Profil
Fred
Fred
Folgen
Beigetreten
Tue Nov 01 15:27:17 UTC 2022
125
posts
27
likes received
0
followers
Badges
Latest Posts
Re: Einträge Zählern
@mail You are welcome. When you get a moment please marked the post answered.
Fred
Fred
vor 3 Tagen
Hilfe erhalten
Reported - view
Re: Einträge Zählern
Here is a sample DB. Open the Summary Page and take a look at the function.
Attachment
Fred
Fred
vor 4 Tagen
1
Hilfe erhalten
Reported - view
Re: Einträge Zählern
Can you share you data model?
Fred
Fred
vor 5 Tagen
Hilfe erhalten
Reported - view
Re: N:1 Beziehung mit Einschränkung einer dyn. Mehrfachauswahl
@Bjoern That makes sense since a select returns nID not just a number.
Fred
Fred
vor 10 Tagen
Hilfe erhalten
Reported - view
Re: N:1 Beziehung mit Einschränkung einer dyn. Mehrfachauswahl
@Bjoern Here is one way of changing the code. let bankID := first(select Datensatz where text(Datensatzwert) = "Bank"); if contains(numbers(b.Kontakttyp), bankID) then true else false end
Fred
Fred
vor 10 Tagen
Hilfe erhalten
Reported - view
Re: N:1 Beziehung mit Einschränkung einer dyn. Mehrfachauswahl
@Bjoern Dynamic fields are based on the record ID (recID). If you go to the Datensatz table, what is the record ID of the record with the word Bank?
Fred
Fred
vor 11 Tagen
Hilfe erhalten
Reported - view
Re: N:1 Beziehung mit Einschränkung einer dyn. Mehrfachauswahl
try: First(select Datensatz where text(Datensatzwert) ="Bank") Assuming that the dynamic field shows the word "Bank" in the choice field.
Fred
Fred
vor 11 Tagen
Hilfe erhalten
Reported - view
Re: Ansicht mit Filter
Let us back up. You originally posted you wanted to: Sought solution: What do I have to do so that I can choose the account in the view under Objects and only the bookings belonging to the object are…
Fred
Fred
vor 12 Tagen
Hilfe erhalten
Reported - view
Re: Ansicht mit Filter
@Marco Objekt and Konten are related through Buchungen. So if you are in Objekt then the following code will get you Konten: Buchungen.Konten
Fred
Fred
vor 13 Tagen
Hilfe erhalten
Reported - view
Re: Ansicht mit Filter
Aren't bookings already linked to an account? Through Objects back to Clients back to Accounts. So you need bookings to be linked to other accounts as well?
Fred
Fred
vor 2 Wochen
Hilfe erhalten
Reported - view
Re: Ninox Plugins - Ninext Popup ninext
Here are the official docs. Once you open the plugin, then you go back and open a table then Edit Fields. You will now see a number next to fields that are used in formulas.…
Fred
Fred
vor 3 Wochen
1
Hilfe erhalten
Reported - view
Re: Dynamisches Drucklayout Word "Ankreuz"-Felder
Also Carbone may not have the font to show the check and empty box. Put text in the show and elseShow to see if it does the conditions correctly. Then you will also know if it is a font issue.
Fred
Fred
vor 3 Wochen
Hilfe erhalten
Reported - view
Re: Dynamisches Drucklayout Word "Ankreuz"-Felder
Carbone using single quotes inside their code so you will need to put single quotes around all of the text. {d.Table:ifIN('Yes'):show('☒'):elseShow('☐')} {d.…
Fred
Fred
vor 1 Monat
Hilfe erhalten
Reported - view
Re: Dynamisches Drucklayout Word "Ankreuz"-Felder
@medizin What kind of field is Table? to get a better understanding of how the data is being passed to Carbone, you can create the JSON in Ninox to see what the data looks like.…
Fred
Fred
vor 1 Monat
Hilfe erhalten
Reported - view
Re: Auslesung von DMFA mit nicht nachvollziehbaren ID Referenzen
When you create a dynamic choice field from a table, Ninox is creating an array of record IDs. When you create your dynamic field you have the option to select the data you want to show in the field.…
Fred
Fred
vor 1 Monat
Hilfe erhalten
Reported - view
Re: Einschränkung
@Tacho Can you upload a sample DB so I can get a better idea of your structure? Or can you explain how you enter in data?
Fred
Fred
vor 1 Monat
Hilfe erhalten
Reported - view
Re: Einschränkung
Here is one way to do it. I did it a different way, starting in the Teilnehmer table, I created a dynamic choice field that shows all Tryouts not yet assigned,…
Attachment
Fred
Fred
vor 1 Monat
Hilfe erhalten
Reported - view
Re: Datensätze erstellen über Datums Auswahl
Here is a simple possibility: let t := this; let d := days(Datum, 'Datum Ende') + 1; for i in range(0, d) do create(tablename). Datum := t.Datum + i end; Line 2:…
Fred
Fred
vor 1 Monat
Hilfe erhalten
Reported - view
Re: sliding dchoice
@Mirko Good point. I don't use dynamic fields to store data, because of the resetting of recID issue. So as a UI element it makes complete sense.
Fred
Fred
vor 2 Monaten
Tipps und Tricks
Reported - view
Re: sliding dchoice
My only worry is that when the year changes your old data will be incorrect. If you selected 2022 back in 2025, 2022 will no longer exist now that we are in 2026 and you lost that data.
Fred
Fred
vor 2 Monaten
1
Tipps und Tricks
Reported - view
Re: Support - Keine Rückmeldung
I have the pro version and most of the time I don't get a quick response. If this happened at the Enterprise level I would be pissed.
Fred
Fred
vor 2 Monaten
2
Hilfe erhalten
Reported - view
Re: Windows Desktop Version
It has been asked about for years. I wouldn't hold my breath.
Fred
Fred
vor 2 Monaten
1
Hilfe erhalten
Reported - view
Re: Abfrage über Zwischentabelle mit Anzeige im Dashboard
A dynamic choice field returns the record ID unless you put text() around it. But you can use the record ID to your advantage. Try: let xKat := AuswahlKategorie; let xSch := AuswahlSchauspieler;…
Fred
Fred
vor 3 Monaten
Hilfe erhalten
Reported - view
Re: Stichtag aus Datum + 70 Jahre berechnen
@Maximilian March I'm glad it worked. When you have a moment, please mark the post "answered".
Fred
Fred
vor 3 Monaten
Hilfe erhalten
Reported - view
Re: Stichtag aus Datum + 70 Jahre berechnen
You can try using the date() command: date(year(deathdatefield)+70,month(deathdatefield),day(deathdatefield)) We also have to use the year(), month() and day() commands to break apart the…
Fred
Fred
vor 3 Monaten
1
Hilfe erhalten
Reported - view
1
2
3
4
5
Ninox-Homepage
Übersicht
Tipps und Tricks
Hilfe erhalten
Servicestatus
Dokumentation
Setup
Installierte Apps
Public Cloud
Private Cloud
On-Premises
Plugins
Datenbanken
Tabellen
Tabellen-Beziehungen
Felder und Elemente
Seiten
Ansichten
Import und Export
Module
Drucken
Vorlagen
Anwendungsbeispiele
Automatisierung
Performance
Scripting
Funktionen
API
Mein Account
Abonnements
Administration
Private Cloud Administration
Arbeitsbereiche managen
Nutzer managen
Zugriffsrechte
Backups und Speicher
Prozess-Monitor
Lösungen
Ninox E-Rechnung
Ninox HR
Ninox Onboarding
Ninox CRM
Alle Themen anzeigen