QModelIndexList indexList = yourTableView->selectionModel()->selectedIndexes(); int row; foreach (QModelIndex index, indexList) { row = index.row(); .... }