the probability that you will close on a sale is .7
if you call on 4 sales, the probability that you will close on exactly 3 of them is equal to C(4,3)*.7^3*.3^1 which is equal to .4116
all the probabilities are shown in the following table
x c(4,x) .7^x .3^(4-x) p(x)
0 1.00 1.00 0.0081 0.0081
1 4.00 0.70 0.027 0.0756
2 6.00 0.49 0.09 0.2646
3 4.00 0.34 0.3 0.4116
4 1.00 0.24 1 0.2401
c(4,x) is the combination formula for selecting x items out of 4.
.7^x is the probability of making a sale raised to the x power.
.3^(4-x) is the probability of not making a sale raised to the (4-x) power
p(x) is equal to c(4,x) * .7^x * .3^(4-x)
that's the probability of getting x out of 4.
your solution is getting 3 out of 4 sales to be successful.