Do you mean converting decimal numbers to binary? I can show you a method of doing this.
Try an example.
Choose the number 42 decimal.
The highest power of 2 that will be less than 42 is 32 (ie 2^5).
So, write down a 1 and subtract 32 from 42 to get 10.
1
The next lower power of 2 is 16 (2^4) but this is greater than 10 and you can't subtract 16 from 10, so write down a 0.
10
The next lower power of 2 is 8 (2^3) and this is less than 10 so write down a 1 and subtract 8
from 10 to get 2.
101
The next lower power of 2 is 4 (2^2) but this is greater than 2 (so you can't subtract it from 2) so write down a 0.
1010
The next lower power of 2 is 2 (2^1) and this equals 2 so write down a 1 and subtract 2 to get 0.
10101.
The next lower power of 2 (ie 2^0) is 1, but you can't subtract 1 from 0 so write down another 0.
101010
You can check if this is right like this:
1 times 32, plus 0 times 16, plus 1 times 8, plus 0 times 4, plus 1 times 2, plus 0 times 1.
= 32 + 8 + 2
= 42
So, 101010 is the binary equivalent of 42 decimal.