Once again, that doesn't work.. 
Now, I'm getting a runtime error, as seen in the picture below. The selectedRows() function, doesn't return the complete row of the index selectd in the model (unless you select multiple columns in a specific row, and then just gets the first data item from the first selected cell), so I'm not sure if that has something to do with the error.
I've been trying to get this to work for quite some time today, but it's proving futile! I do appreciate the help, though, so don't think I don't!
The model that is being utilized in the program is named "model."
selectionModel = ui->taskView->selectionModel();
QModelIndexList editIndex = selectionModel->selectedRows();
target = model->data(model->index(editIndex.first().row(), 0));
QVariant target;
selectionModel = ui->taskView->selectionModel();
QModelIndexList editIndex = selectionModel->selectedRows();
target = model->data(model->index(editIndex.first().row(), 0));
To copy to clipboard, switch view to plain text mode

Edit: If I select the ENTIRE row, the code works, but that's not what I'm aiming for.
Bookmarks