CascadeHope
New Member
- Joined
- Jun 26, 2014
- Messages
- 7
Hello everyone,
I've been working on a project for work, and am needing a little help for it..
I have a matrix of values, and below it is a section where you enter in your own values, and see if they exist anywhere in the matrix, I want it to return any conflicts in the the matrix.
I'm very bad at putting this into words, so hopefully this quick example helps;
A
|__ |__B__C__D__E
A|x_|__|___|__|___|
B|__|_x|___|_n|___|
C|__|__|_x_|__|___|
D|__|_n_|___|x_|___|
E|__|__|___|__|_x_|
In this quick example, The middle section is X'd out, since there are no conflicts between the same value, and B>>D s a conflict, so they are indicated by an n.
The matrix will not change, so this part works fine.
Below it, if you enter an A and an E for example, it will highlight the rows and columns of A and E, to make it more clear to see if any conflicts occur, which none do.
What I would like added, is if there is a conflict found, it will give me the row and column that the highlighted row and column meet.
Sorry if this still isn't very clear...
I've been working on a project for work, and am needing a little help for it..
I have a matrix of values, and below it is a section where you enter in your own values, and see if they exist anywhere in the matrix, I want it to return any conflicts in the the matrix.
I'm very bad at putting this into words, so hopefully this quick example helps;
A
|__ |__B__C__D__E
A|x_|__|___|__|___|
B|__|_x|___|_n|___|
C|__|__|_x_|__|___|
D|__|_n_|___|x_|___|
E|__|__|___|__|_x_|
In this quick example, The middle section is X'd out, since there are no conflicts between the same value, and B>>D s a conflict, so they are indicated by an n.
The matrix will not change, so this part works fine.
Below it, if you enter an A and an E for example, it will highlight the rows and columns of A and E, to make it more clear to see if any conflicts occur, which none do.
What I would like added, is if there is a conflict found, it will give me the row and column that the highlighted row and column meet.
Sorry if this still isn't very clear...