How can I copy the content of one column to another column within the DataGridView

To get a vaue from a cell in a DGV use:
dataGridView1.Rows[RowIndex].Cells[ColumnIndex].Value;
or
dataGridView1.[ColumnIndex, RowIndex].Value;
Loop through the rows with a for statement and the desired column indexes and you're done.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.