Hi @Sumaira ,
Do you want to get user's information of azure profile in powerapps?
If so , you could use office365 users connector.
Firstly , create connection with office365 users .
Then use formula like this:
Office365Users.UserProfileV2(useremail)
Then you could get this user's profile by using his email.
You could also use this formula to get user data:
Office365Users.SearchUserV2({searchTerm:xxxx}).value
//please fill in xxxx with the data that you want
By using this formula, you could use display name, given name, surname, mail, mail nickname and user principal name to search for user's profile.
However, you could only get these data by using this connector:
Skills and education details are all not supported.
You could only get data that you filled in azure admin center, others are not supported.

You could check in details here:
https://portal.azure.com
You could know more about office365 users connector here:
https://docs.microsoft.com/en-us/connectors/office365users/#get-user-profile-(v2)
Best regards,