Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Automate - Building Flows
Unanswered

Add dynamic table to adaptive card

(0) ShareShare
ReportReport
Posted on by 69

Hi guys,

 

I have a HTML table that i send over email. Was wondering how i can move that to adaptive cards using columns.

 

The current HTML table has fixed header and dynamic rows. Then i used apply to each row to add them into my excel file.

How can i achieve something like this via adaptive cards if i want to have a table with fixed header and dynamic rows?

For now i can only achieve fixed header and fixed rows.

 

{
"Flow Display Name": @{items('Apply_to_each_Flow')?['properties']?['displayName']},
"Created By": @{body('Get_user_profile_(V2)')?['displayName']},
"Flow Creation Time": @{items('Apply_to_each_Flow')?['properties']?['createdTime']}
}

 

 

 

{
    "type""AdaptiveCard",
    "version""1.2",
    "body": [
        {
            "text""Important Email!",
            "type""TextBlock",
            "weight""Bolder",
            "color""Attention",
            "size""Large"
        },
        {
            "type""TextBlock",
            "text""Email Subject: @{triggerOutputs()?['body/subject']}"
        },
        {
            "type""ColumnSet",
            "columns": [
                {
                    "width""stretch",
                    "type""Column",
                    "items": [
                        {
                            "text""Flow Name",
                            "type""TextBlock"
                        }
                    ]
                },
                {
                    "width""stretch",
                    "type""Column",
                    "items": [
                        {
                            "text""Created By",
                            "type""TextBlock"
                        }
                    ]
                },
                {
                    "width""stretch",
                    "type""Column",
                    "items": [
                        {
                            "text""Creation Time",
                            "type""TextBlock"
                        }
                    ]
                }
            ]
        },
        {
            "type""ColumnSet",
            "columns": [
                {
                    "width""stretch",
                    "type""Column",
                    "items": [
                        {
                            "text""Flow Name A",
                            "type""TextBlock"
                        }
                    ]
                },
                {
                    "width""stretch",
                    "type""Column",
                    "items": [
                        {
                            "text""Created By Person A",
                            "type""TextBlock"
                        }
                    ]
                },
                {
                    "width""stretch",
                    "type""Column",
                    "items": [
                        {
                            "text""2021-01-25",
                            "type""TextBlock"
                        }
                    ]
                }
            ]
        }
    ],
    "actions": [
        {
            "type""Action.Submit",
            "title""Add to To-Do"
        }
    ]
}
  • PrashobMohandas Profile Picture
    6 on at
    Re: Add dynamic table to adaptive card

    Did you got a solution for this. Could you kindly share if you have one.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Announcing the Engage with the Community forum!

This forum is your space to connect, share, and grow!

Leaderboard > Power Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 497 Super User 2025 Season 1

#2
David_MA Profile Picture

David_MA 436 Super User 2025 Season 1

#3
Riyaz_riz11 Profile Picture

Riyaz_riz11 244 Super User 2025 Season 1