Sanjay, my colleague is an avid programmer and excel enthusiast. In his spare time he wrote a small VBA macro to solve Sudoku. Sudoku is a very famous number based puzzle with a 9×9 grid of cells. Each of the 9 rows, columns and 3×3 blocks should be filled in such a way that they have all the numbers from 1 to 9. Sudoku is a very effective way to keep your brain cells ticking. I am a huge sudoku fan and I solve sudoku whenever I have few minutes to kill. So naturally I jumped with joy when I saw Sanjay’s excel macro for solving sudoku. He is kind enough to let me share this with all of you.
Click here to download the sudoku solver workbook. It has macros, so enable them when you download the file.
The file is unlocked, so if you are curious, go around and poke the code.
And if you are interested in writing your own sudoku solver, here is a basic algorithm:
- While Sudoku is not solved,
- Check if any row, column or 3×3 block has ‘n’ cells such that, (n>1)
- All possible values in those ‘n’ cells are exactly ‘n’ unique values
- For each block of such cells,
- Remove the occurrences of the ‘n’ unique values from remaining cell’s possible’s list in that row / column / 3×3 grid
- Check if any cell has more than one possible value. If so, Sudoku is not solved.
- Check if any row, column or 3×3 block has ‘n’ cells such that, (n>1)
- Do While
2 Responses to “Weighted Sorting in Excel ”
Just add a column calculating the "performance" or whatever is your criteria and sort by it? No?
have no patience to waste 13min. Save your time too.
Just thought I would mention, the "weird" custom sort behavior mentioned at 5:45 where "% return" doesn't appear to be sorting is because the "August Purchases" field has the sort preference and since these are such unique values, no additional sorting is possible on the "% return" field. If there were two entries that had the same "Customer Since" year AND the same "August Purchases" amount, THEN you would see a sorting of the "% return" on these two entries.