Automations, is this posible?

Could I activate a bot from a change in a specific column?

Ja! Aus der Hilfe Dokumentation:

Bei der Datenänderung , die einen Bot auslöst, kann es sich um jede Art von Datenänderung handeln, die beim Server ankommt. Sie können beispielsweise eine zusätzliche Tabellenspalte hinzufügen, deren einziger Zweck darin besteht, einen Bot auszulösen. Anschließend können Sie eine Client-Aktionsschaltfläche erstellen , die den Wert der zusätzlichen Spalte aktualisiert. Durch Klicken auf die Aktionsschaltfläche wird Ihr Bot ausgelöst.

How can I do that??

Siehe: Bots: Das Wesentliche

Für eine detaillierte Hilfestellung bräuchte man Infos darüber, was Sie genau in Ihrer App beabsichtigen.

1 Like

Sorry, I expressed wrong myself. I need to activate a bot if one specific column was changed.

Ja und was soll der “Bot” automatisieren oder tun?

You can set up a bot Event to look for a Data Change. Pick the table that your column is in then Make a condition that looks at the column if you want to limit the automation.

e.g. the following will run the automation only if the columns Status has the value Complete, and the column Email has the user’s email address in it.

AND(
[Status] = “Complete”,
USEREMAIL()=[Email]
)

1 Like

Use then [_THISROW_BEFORE].[ColumnName]<>[_THISROW_AFTER].[ColumnName] and check that the Editor > Settings > Data > Legacy > Comparison mode > “Consistent”.

If it’s set as “Legacy”, you need to use..
AND(
ISNOTBLANK([ColumnName]),
[_THISROW_BEFORE].[ColumnName]<>[_THISROW_AFTER].[ColumnName]
)

1 Like

Thank youu

Thanks for your help, I was able to solve it!!