I want to remove or edit these help link from the admin panel how to remove or edit these link. Where to find the file also to edit.
run this SQL query in your phpMyAdmin
DELETE FROM your_db_prefix_dataset_values WHERE dataset_column_id IN (10,11,12,13,14,15,40) AND row_id IN (7,111,112,113,114);
but replace your_db_prefix_ by yours and do not forget do table backup (dump) before.
Also clean cache after run.
Thanks its really work.