I've calculated the probability for rolling a particular value or higher on both dice when rolling 2d6, as follows.
1 or higher: 100% 2 or higher: 69.44% 3 or higher: 44.44% 4 or higher: 25% 5 or higher: 11.11% 6 or higher: 2.778%
If I add a third dice to this, how does it affect the probability if I still only need the particular value or higher on two or more of the dice?
This can be treated as a binomial: each die either rolls the value $v$ or higher, or it does not; the dice roll independently; there is a fixed number $n$ of trials (dice); and the probability is the same for all dice.
The general binomial formula is $$P(X=k) = {n \choose k}\cdot p^k \cdot (1-p)^{n-k}$$ where $p$ is the probability of a single die rolling at or above value $v$, which is $\frac{7-v}{6}$, $n=3$, and $k = 2$.