tezza
Active Member
- Joined
- Sep 10, 2006
- Messages
- 382
- Office Version
- 2016
- 2010
- Platform
- Windows
- Web
Firstly, forgive to code tags, I can't seem to work out how to attached a sheet with excel genie.
Looking at the chart below the top row is the binary header value for the columns and each row has been split into single cells.
The first block uses the values 3,4,5,6,7 converted to binary.
The bottom row sums the value of each column - pretty straight forward so far.
The totals of block one shows 0 0 4 3 3 (This row is all that is important in the final outcome)
Is there a way to get excel to adjust only one of the values to make all the columns add up to an even number then show what needs to be changed?
The second block is an example of the goal.
In this case, adjusting the value 7 from row 5 to the value of 4 the total of all the individual columns come to 0 0 4 2 2 making all even numbers.
Only one number can ever be changed at any one time but to know what row and number to adjust and to what is the key to it all.
The adjusted number must always be lower than the original.
Thank you
Terry
Looking at the chart below the top row is the binary header value for the columns and each row has been split into single cells.
The first block uses the values 3,4,5,6,7 converted to binary.
The bottom row sums the value of each column - pretty straight forward so far.
The totals of block one shows 0 0 4 3 3 (This row is all that is important in the final outcome)
Is there a way to get excel to adjust only one of the values to make all the columns add up to an even number then show what needs to be changed?
The second block is an example of the goal.
In this case, adjusting the value 7 from row 5 to the value of 4 the total of all the individual columns come to 0 0 4 2 2 making all even numbers.
Only one number can ever be changed at any one time but to know what row and number to adjust and to what is the key to it all.
The adjusted number must always be lower than the original.
Code:
16 8 4 2 1 Adjusted 16 8 4 2 1
0 0 0 1 1 3 0 0 0 1 1
0 0 1 0 0 4 0 0 1 0 0
0 0 1 0 1 5 0 0 1 0
0 0 1 1 0 6 0 0 1 1 0
0 0 1 1 1 4 0 0 1 0 0
0 0 4 3 3 <- total -> 0 0 4 2 2
Thank you
Terry