I have a LF Form that displays a table with values from a lookup. I have the Workflow Insert function working to add new rows and the Update works when a row is edited. I have a Conditional Decision inside a For Each Row.
I need the give the user the ability to delete random rows from the LF Forms table and have the corresponding row in the SQL table deleted when the Workflow is called.
I have a Custom Query started which works when I Test and obviously deletes any values not equal to the specified test value.
DELETE
FROM Table_Name
WHERE UserID != @id
How can I delete a SQL table row (UserID) when the corresponding row (id) on the Form is no longer present?
I'd appreciate any assistance.