Concept:
A number is divisible by 9 if the sum of its digits is divisible by 9.
Explanation:
Digits: $4 + 3 + 2 + x + 6 + 8 + 7$
Sum without missing digit:
\[
4 + 3 + 2 + 6 + 8 + 7 = 30
\]
So total sum = $30 + x$
For divisibility by 9:
\[
30 + x = 36
\Rightarrow x = 6
\]