How to express multi condition rules with flow diagram or truth table

I have a below mentioned multiple variable which match with the other variables and gives output like TRUE, FALSE or HOLD.

I have tried to represent it here in table format.

   Variable            Condition
Var1   Var2     Con1    Con2    Con3   Con4     Con5
A      A1       Hold    True    True   False    Hold
A      E1       Hold    True    True   False    Hold
A      D1       Hold    True    True   False    Hold
D      A1       Hold    True    True   False    Hold
D      E1       Hold    True    True   False    Hold
E      A1       Hold    True    True   False    Hold
E      D1       True    True    True   False    Hold
D      A1       True    True    True   True     Hold

How should i present the above mentioned structure in flow diagram or in simple English language by writing it on technical requirement document.

The purpose is to make the development team to understand that each condition should be check in a sequence from FALSE, HOLD & TRUE (i.e IF any condition match with False then break the loop and mark it as a False else check Hold condition and last True)