Apr 02 2023 09:47 AM
I have yet another runtime error; this time it's 1004 instead of 6. Again, this code was originally French and I did not make it myself.
Apr 02 2023 11:12 AM
It's impossible to know what causes this without seeing (a copy of) the workbook.
Apr 02 2023 12:03 PM
Here is a copy of the workbook. I'm sure that once you start looking through it you'll realize that there's A LOT wrong with it.
Apr 02 2023 12:53 PM
SolutionThe problem is that NONE of the cells in column A of the Risk Assessment sheet contains "END OF RISKS", so loop never stops until the variable row is greater than the number of rows on the sheet (1048576).
To make it work, column A MUST contain a cell with value "END OF RISKS".
Another point: you have several lines
Clear tab_value()
This should probably be
Erase tab_value()
Apr 02 2023 01:28 PM
Apr 02 2023 02:22 PM
The next to last line of the macro column_selection (in Module11) is
End:
This makes the code stop completely. Remove that line, it isn't needed.
Apr 02 2023 02:54 PM