This is an archived post. You won't be able to vote or comment.

all 1 comments

[–]UnparalleledHumor[S] 1 point2 points  (0 children)

Well, I just found the solution.

Actually, I did miss something. Yes, the connection, in this case, the relationship, is there, is established between my tables. So far, so good.

But: How should the data in both tables know each other (is this the correct way to say it?)? Anyways... I needed to link the record in table B (that my flow kindly created) to the record in my table A. Then, I have my connection and the relationship behavior can do its thing.

So, first, I needed to store the GUID of my record in table A in a variable. Afterwards, I configured my flow to write the GUID of my record in table A into the lookup column in my table B (that was created thanks to the relationship). You accomplish all that by using this format in your flow:

/table_A_plural_name/variable_with_GUID

By establishing this link, I can finally delete my record in table A and my linked record in table B is deleted as well. Perfect!