This might be what your are looking for, but it is hard to tell from your question.
How many ways are there from a group of $n$ people to make a committee of $d$ people with a board of $c$ people?
Pick the $d$ people for the committee, then from the committee, choose the $c$ board members:
$$
\binom{n}{d}\binom{d}{c}
$$
Pick the $c$ people for the board, then from the remaining $n-c$ people, choose the remaining $d-c$ committee members:
$$
\binom{n}{c}\binom{n-c}{d-c}
$$
Therefore,
$$
\binom{n}{d}\binom{d}{c}=\binom{n}{c}\binom{n-c}{d-c}
$$