If I have a table of let's say 2000 values in column 1 and 2, how can I multiply only an specific part of that table by a certain number?. In particular, I want to multiply the second column only from row 3 to row 2000 (not including row 1 and 2) by a number (let's say 5) and leaving column 1 intact. I would very much appreciate your help.
I am aware of Elegant operations on matrix rows and columns but I could not find a solution for this in particular there.

table[[3;;2000,2]]=5 table[[3;;2000,2]]? – kglr Apr 18 '20 at 00:57MapAt[5 #&, table, {3;;2000,2}]– kglr Apr 18 '20 at 00:59