web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details
Power Apps - Building Power Apps
Answered

Get MS Teams Group ID

Like (0) ShareShare
ReportReport
Posted on 18 Mar 2019 16:20:58 by 347

Hi All.

 

I'm trying to retrieve and display an MS Teams' group ID. In a dropdown box, I'm retrieving the display name of the team via:

 

MicrosoftTeams.GetAllTeams().value.displayName

 

That part works and I'm able to see the teams that I'm a part of. The second part is where I'm having trouble with. I want to be able to show the group ID of the selected display name. I'm trying this right now but it's currently giving me an error stating: "The property expects Text values, but this rule produces incompatible Table values."


Filter(MicrosoftTeams.GetAllTeams().value.id, 'Team Name' = DataCardValue9.Selected.displayName)

Any ideas on how to fix this?

Categories:
  • Verified answer
    RandyHayes Profile Picture
    76,287 Super User 2024 Season 1 on 18 Mar 2019 at 16:42:52
    Re: Get MS Teams Group ID

    @hnguy71 

    MicrosoftTeams.GetAllTeams().value is a table of Teams.

    Each record in the value table will have a description, displayName, and id

     

    There is no 'Team Name' column.  So your filter will not work.

    You could change it to this:

     

    Lookup(MicrosoftTeams.GetAllTeams().value, 'displayName' = DataCardValue9.Selected.displayName).id

     

    I hope that gets you further.

     

Helpful resources

Quick Links

Telen Wang – Community Spotlight

We are honored to recognize Telen Wang as our August 2025 Community…

Announcing our 2025 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for…

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 637 Most Valuable Professional

#2
stampcoin Profile Picture

stampcoin 570 Super User 2025 Season 2

#3
Power Apps 1919 Profile Picture

Power Apps 1919 473

Loading complete