I'm trying to find the row count for triangle inputting the total number of points.
I've found this, where $x$ is the total points, and $n$ is the rows. I'm having trouble solving it for $n$
$x = \frac{n(n + 1)}2$
$2x = n(n+1)$
$2\frac xn = n+1$
This is as far as I've got, any guidance would be appreciated.

If I understand you correctly, you’re given the number $\frac12n(n+1)$ and wish to calculate $n$ from it. Here are two approaches.
Let $m$ be the number that you’re given; you want to solve $m=\frac12n(n+1)$ for $n$. This equation can be rewritten as $n^2+n-2m=0$, which can then be solved for $n$ with the quadratic formula: $$n=\frac{-1+\sqrt{1+8m}}2\;.$$ (I’ve ignored the negative root, since we clearly don’t want it.
Alternatively, notice that $2m=n(n+1)$, so $n\approx\sqrt{2m}$. This square root always lies between $n$ and $n+1$, so $n=\lfloor\sqrt{2m}\rfloor$, where $\lfloor x\rfloor$ is the largest integer less than or equal to $x$.