Hi kklow.27,
Have you tried the following sample code:
private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
if (e.ColumnIndex == 0) // your DataGridViewComboBoxColumn index
{
e.Value = "Default value";
}
}
Best regards,
Guo
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
Welcome to the All-In-One Code Framework! If you have any feedback, please tell us.