Tell us what you are trying to do?
I have created a USER REGISTRATION form and want to DISPLAY ALL SUBMISSION HISTORY in the WP ADMIN DASHBOARD
Is there any documentation that you are following?
No
Is there a similar example that we can see?
Gravity Forms has a 'ENTRIES' tab for each form.
This makes it so easy for everyone!
to check at a glance all the Form Submissions
What is the link to your site?
hidden link
This would be a feature request, as we do not have such a functionality.
But I am confused:
is the User's List in the dashboard not exact said "History"?
Yes, if a User gets deleted he/she will not figure there anymore.
If you need an exact log if all ever submitted CRED Forms in general, I suggest to append a small code snippet to your theme's functions.php file, hooking into the cred_save_data() action and append it to all CRED forms (do not limit to a specific CRED ID).
https://toolset.com/documentation/programmer-reference/cred-api/#cred_save_data
In this code you could for example create a simple entry in a special post type logging all the information - or eventually just email them to your inbox, how you prefer.
Would that be a feasible solution?