Delete condition

Hello guys

I have 2 table

Table 1 for employees
Table 2 for jobs
i want when I delete row from table 1 the condition check if the employee have job in table 2 if have stop the action if not continue to delete the row

Thanks guys

0 2 107
2 REPLIES 2

You only want a user to be able to delete a record only if they do not have a record in some other Table?

3X_1_1_11c6142528fc67a453c3ba9eb04ffd37877053cf.png

ISBLANK( FILTER(
  jobs
  [employee] = [_THISROW].[employee]
) )

Thank you so much

Top Labels in this Space