Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Get User w/ Meta (Dept # 55.2)

// WP_User_Query arguments
$args = array(
	'meta_query'     => array(
		array(
			'key'     => 'acf_dept_number',
			'value'   => '55.2',
			'compare' => '=',
		),
	),
	'fields'         => 'all_with_meta',
);

// The User Query
$user_query = new WP_User_Query( $args );

// The User Loop
if ( ! empty( $user_query->results ) ) {
	foreach ( $user_query->results as $user ) {
		// do something
	}
} else {
	// no users found
}