Hi K Edison.
You'll need some custom code to do this. Do you know how to write javascript or have someone who knows how to?
The assessment states can be accessed using:
import Adapt from 'core/js/adapt';
Adapt.assessment.get().map(model => model.getState());
Or you can look them up individually by their id:
import Adapt from 'core/js/adapt';
Adapt.assessment.get('a-15').getState();
You'll probably need to write or have someone write a new component to do this for you. Similar to the standard adapt-contrib-assessmentResults
I hope that helps.
Ollie.