i have a datagridview which has a DataGridViewComboBoxColumn for unit i want to get the selectedvalue of each DataGridViewComboBoxColumn how could i get this?
You can use this -
dataGridView1.Rows["YourRowNumber"].Cells["YourColumnNameOrNumber"].Value;