I have a dataset that looks like this:
A B C D
1. 5 4 4 4
2. 5 4 4 4
3. 5 4 4 4
4. 5 4 4 4
5. 5 4 4 4
6. 5 4 4 4
7. 5 4 4 4
I'd like to add a "zero" to all variables in column C. For example, like this:
A B C D
1. 5 4 40 4
2. 5 4 40 4
3. 5 4 40 4
4. 5 4 40 4
5. 5 4 40 4
6. 5 4 40 4
7. 5 4 40 4
How do I do this?