when ı change spesific columns . my bot can able to work

Hi everyone , ı have a table that contain my ınventory informations (quantity , dealer price , order , shelf..çetc)

.I made a bot. If I change this table  my bot works and the row that  ı changed  is added  to other table.

But ı want just when ı  just change specific columns  , my bot can able to work.

So example , when ı change stock quantity  my bot should work , but when ı change order my bot does not work.

How can ı make  this bot  ? 

Thanks everyone.

0 2 73
2 REPLIES 2

You should be able to set a condition for the event. The condition would check to see if the particular field(s) you are interested in have changed. Something like this:

 

OR(
  [_THISROW_BEFORE].[stock_quantity] <> [_THISROW_AFTER].[stock_quantity],
  [_THISROW_BEFORE].[another_important_field] <> [_THISROW_AFTER].[another_important_field]
)

 

Thank you u solved my problem 

Top Labels in this Space