Thank you!

I have now implemented the following to select and edit the next cell in the row.

Qt Code:
  1. QModelIndex index = tableViewPowerDegree->currentIndex();
  2. int row = index.row() + 1;
  3. int column = 1;
  4. QModelIndex newIndex = tableViewPowerDegree->model()->index(row,column);
  5. tableViewPowerDegree->selectionModel()->select(newIndex, QItemSelectionModel::Select);
  6. tableViewPowerDegree->setCurrentIndex(newIndex);
  7. tableViewPowerDegree->setFocus();
  8. tableViewPowerDegree->edit(newIndex);
To copy to clipboard, switch view to plain text mode