0

Dubletten Überprüfung

Hey ihr alle.

 

Folgendes Problem. Ich habe nun alles probiert und verschiedene KIs befragt. Ergebnis waren Fehler.

Ich möchte das Ninox bei der Eingabe von Servicepartnern überprüft, ob diese bereits vorhanden ist. Sollten die Triggermarken (Anrede, Name, Straße, Hausnummer, Postleitzahl und Ort) odentisch sein, soll Ninox melden, das diese Kombination schon vorhanden ist.

Wo habe ich meinen Denkfehler?

Kann mir jemand helfen?

 

LG

Lars

2 Antworten

null
    • szormpas
    • vor 2 Wochen
    • Gemeldet - anzeigen

      Hi,

    As far as I know, Ninox hasn't yet supported data validation in its forms.

    You'll have to create a custom one using HTML, CSS and JS.

    There's a ready-made template you can use to get started in the Input Form Widget. Just download the latest version of the Dashboard Template (v11.4) from the thread below:

    https://forum.ninox.com/t/p8yt8nx/dashboard-template

    • mirko3
    • vor 2 Wochen
    • Gemeldet - anzeigen

    Hallo Lars. Für das Kennzeichnen/Aufsuchen/Löschen von Duplikate findest Du hier im Forum schon einiges was funktioniert. Das unten stehende Script kannst Du in ein Funktionsfeld eintragen und zeigt Dir dann ein Warnsymbol. Mirko

    let fields := ["Anrede", "Name", "Straße", "Hausnummer", "Postleitzahl", "Ort"];
    let comparisonItem := "";
    for i in fields do
        comparisonItem := comparisonItem + get(this, i)
    end;
    let items := cnt(select Tabelle1 where Anrede + Name + 'Straße' + Hausnummer + Postleitzahl + Ort = comparisonItem);
    if items > 1 then
        icon(formatJSON({
            weight: 400,
            filling: 0,
            icon: "warning",
            color: "firebrick"
        }))
    end