create a table using user meta custom data

See how the data is stored in the database in the table “wp_usermeta”

Find the storage keys for “points”, “training completed”

Then using the function

https://codex.wordpress.org/Function_Reference/get_users

$users = get_users( $args ); 

foreach ( $users as $user ): 

    echo $user->ID;

    echo $user->display_name ;

    echo get_user_meta( $user->ID, 'KEY_POINTS', $single = true);

    echo get_user_meta( $user->ID, 'KEY_TRAINING_COMPLETE', $single = true);
endforeach;