web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Append table with table
Power Apps
Answered

Append table with table

(0) ShareShare
ReportReport
Posted on by 3

Hello.

I'm trying to create table to use in items property for drop down.

One table is output of filter function that is based on the source of the app.

The other table is my hardcoded values that I'd like to see in the dropdown next to the ones from filter function.

How can I append/merge them into one?

What I'm trying to do is basically this:
[1,2,3,4] + [5,6,7] -> [1,2,3,4,5,6,7]

But one of them would be result of the filter function 😛

Categories:
I have the same question (0)
  • VaidasG Profile Picture
    469 on at

    hi @kukiema,

     

    Quick test I built on your requirements:

     

    Set(varList1, [1,2,3]); Set(varList2, [4,5,6,7]);
    ClearCollect(colFinalList, Blank());
    ForAll(varList1 As Item, Collect(colFinalList, Item));
    ForAll(varList2 As Item, Collect(colFinalList, Item));
     
    Finally collection ColFinalList used in a dropdown as Items:
    VaidasG_0-1706191197067.png

     

    Regards
    VaidasG

    -------------------------------------------------------------------------
    If I have answered your question, please mark your post as Solved.
    If you like my response, please give it a Thumbs Up.

  • Verified answer
    Akser Profile Picture
    1,546 Moderator on at

    Hi @kukiema,

    Please make the adjustments mentioned below and let me know if it works. 

     

    Ungroup(
     Table(
     {
     Option: RenameColumns(
     <YOUR FILTER FUNCTION COMES HERE>,
     "<THE COLUMN THAT CONTAINS THE OPTIONS COMES HERE>",
     "Value"
     )
     },
     {
     Option: [
     5,
     6,
     7
     ]
     }
     ),
     "Option"
    )

     

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

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 551

#2
WarrenBelz Profile Picture

WarrenBelz 430 Most Valuable Professional

#3
Valantis Profile Picture

Valantis 298

Last 30 days Overall leaderboard