Is it possible to multiply two rows of a matrix to make it easier to create a determinant from? For example,
$$M=\begin{pmatrix}1 & -2 & 3\\ 2 & 3 & -4 \\ -3 & 1 & 4\end{pmatrix}$$
$$\underline{R_3}+R_2\to \begin{pmatrix}1 & -2 & 3\\ 2 & 3 & -4 \\ -1 & 4 & 0\end{pmatrix}$$
$$\underline{R_1}\times R_3\to \begin{pmatrix}-1 & -8 & 0\\ 2 & 3 & -4 \\ -1 & 4 & 0\end{pmatrix}$$
I don't get the correct value for the determinant (which is $-41$) but get $48$ instead using the $R_1\times R_3$ matrix, yet get the correct answer on the $R_3+R_2$ matrix, am I doing something mathematically wrong multiplying two rows?
Yes, you are doing something wrong when multiplying two rows together. Consider a simpler example : you know that $$\det\begin{pmatrix}1 & 0\\ 0 & 1\end{pmatrix}=1,$$ but if you multiply the first row by the second, you will get $$\begin{pmatrix}0 & 0\\ 0 & 1\end{pmatrix},$$which has determinant $0$.
The only operation you can do without changing the determinant is adding a multiple of a row to another row. Some operations change the determinant in a predictable way: if you multiply a row by some scalar $\alpha$, then the determinant gets multiplied by $\alpha$ as well, and if you switch two rows the determinant changes sign. But multiplying two rows together doesn't obey any rule (as far as I know).