Read ACF select field in user profile

Hello,

I’m trying to get the value of some ACF custom select field, from the user profile.

<Loop type=user id=current>
  <Field acf_select=myfield field=Label />
</Loop>

And I get nothing.

If I don’t try to get the label, it works (but gives me the value) :

<Loop type=user id=current>
  <Field acf_select=myfield />
</Loop>

Is there a way to do this without changing the field configuration?

Thanks !