cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

AddColumns not working with collection

I am working with a list of approved software which users can request to be added to their machines. What I'm trying to do is create a collection which shows all the available software. This collection would be updated via the UI, then any software which is selected would be saved to a SharePoint list with their request. To show which ones the user has selected, I'm trying to add a column with a boolean value to the collection.

I can create the collection easily enough, however, when i try to add the column "isSelected" nothing appears when I check the collection afterwards. Have tried a couple different ways (detailed below) but all either throw errors or simply don't show anything.

The code below fires OnSelect of a button to prepare the collection before navigating to the screen which allows the user to pick the software from this collection via a Gallery.

 

Attempt 1:

ClearCollect(addSoftwares, 'Source Info - Approved Software List');
AddColumns(addSoftwares, "isSelected", false);

this straight up didn't work. The collection isn't updated.

 

 

I thought maybe the column was hidden so tried this:

ClearCollect(addSoftwares, 'Source Info - Approved Software List');
AddColumns(addSoftwares, "isSelected", false);
ShowColumns(addSoftwares, "isSelected");

 

This gives me an error "the specified column isSelected des not exist" at the ShowColumns method.

 

 

Last ditch attempt, I threw a ForAll in there to see if it would make a difference. no dice.

ClearCollect(addSoftwares, 'Source Info - Approved Software List');
ForAll(addSoftwares, AddColumns(addSoftwares, "isSelected", false));

 

 

This all I see in the collection for all cases above:

powerappsbrokenaddcolumn.PNG

 

As far as I can tell, I'm following the documentation set out by Microsoft correctly. Any idea what I'm doing wrong here?

1 ACCEPTED SOLUTION

Accepted Solutions
mr-dang
Community Champion
Community Champion

Hi,

You can use AddColumns around the datasource as you are simultaneously Collecting it:

ClearCollect(addSoftwares, 
	AddColumns('Source Info - Approved Software List',
		"isSelected", false
	)
)

This means, "Make a collection called addSoftwares that adds a column to 'Source Info - Approved Software List' called 'isSelected' with every record set to false."

 

Your formulas did not work because AddColumns is not an 'active' action--it is temporarily applied (unless its result is collected, in which case the collection maintains the column). You can use it in the items property of a Gallery to temporarily add a calculated column without disturbing the original datasource. You can use it in the items property of a Dropdown to make a column that concatenates other columns to show.

 

Let me know if that works.

 

Brian

________

 

Raise the bar on Low Code!

Microsoft Employee
@8bitclassroom

View solution in original post

8 REPLIES 8
Anonymous
Not applicable

The same thing is happening with DropColumns and RenameColumns functions... guessing I am using them wrong somehow?

mr-dang
Community Champion
Community Champion

Hi,

You can use AddColumns around the datasource as you are simultaneously Collecting it:

ClearCollect(addSoftwares, 
	AddColumns('Source Info - Approved Software List',
		"isSelected", false
	)
)

This means, "Make a collection called addSoftwares that adds a column to 'Source Info - Approved Software List' called 'isSelected' with every record set to false."

 

Your formulas did not work because AddColumns is not an 'active' action--it is temporarily applied (unless its result is collected, in which case the collection maintains the column). You can use it in the items property of a Gallery to temporarily add a calculated column without disturbing the original datasource. You can use it in the items property of a Dropdown to make a column that concatenates other columns to show.

 

Let me know if that works.

 

Brian

________

 

Raise the bar on Low Code!

Microsoft Employee
@8bitclassroom
Anonymous
Not applicable

Hi @mr-dang,

 

Thanks for the info. Your suggestion has worked for me.

 

It appears the same is true for DropColumns and RenameColumns functions as well.

 

Would be good if Microsoft had this in their documentation, it suggests that this is indeed an "active" function.

Also, you can wrap AddColumns() around another AddColumns(datasource,"columnname",Value) to add more columns.

Microsoft Employee
@8bitclassroom

@mr-dang


@mr-dangwrote:

Also, you can wrap AddColumns() around another AddColumns(datasource,"columnname",Value) to add more columns.


I have two calculated columns in a sharepoint list that i need converted into a date value. I can't get it quite right.  I'm trying: 

 

ClearCollect(Collection1, AddColumns(SPList.CalcColumn1, "DateValue1", DateValue(CalColumn1), AddColumns(SPList.CalcColumn2, "DateValue2", DateValue(CalcColumn2)))

What am I doing wrong?

Hi @memsim1010,

If I understand correctly, you would like to have 2 calculated columns for your datasource.

 

Here is your current formula formatted for readability:

ClearCollect(Collection1, 
    AddColumns(SPList.CalcColumn1, "DateValue1", DateValue(CalColumn1), 
    AddColumns(SPList.CalcColumn2, "DateValue2", DateValue(CalcColumn2))
)

My understanding is:

  • You want to create shape your datasource, SPList, by copying it to Collection1 but with two calculated columns, DateValue1 and DateValue2.
  • DateValue1 converts CalcColumn1 into a date value.
  • DateValue2 converts CalcColumn2 into a date value as well.
  • Can you clarify if CalcColumns are the name of the calculated column you want, or if they are the columns you want to operate upon? You may need to swap their spots in my solution if I misunderstood.

 

This is just a syntax error. You can revise your formula to:

ClearCollect(Collection1,
    AddColumns(
        SPList,
    "DateValue1",DateValue(CalcColumn1),
    "DateValue2",DateValue(CalcColumn2)
    )
)

This means, "Create a collection, Collection1, that includes everything in SPList, but with two columns added. The new column DateValue1 will be equal to the DateValue of the contents in CalcColumn1, and the new column DateValue2 will be equal to the DateValue of the contents in CalcColumn2."

 

Here's how AddColumns works:

AddColumns(datasource,"newcolumn1",[value for newcolumn1],"newcolumn2",[value for newcolumn2],...)

The first argument in AddColumns (blue) must be a table or a filter upon a table. In your original syntax, your logic was specifying the name of a column instead.

 

Note that you can add as many calculated columns as you want with a single AddColumns() function. You just need to separate them by commas.

 

However, the caveat is that if you want one calculated column to reference another column you had added (one calculated column relies on the value of another), then you'll need to wrap one AddColumns() around another because the first one would not exist for the second one to exist yet:

 

AddColumns(
    AddColumns(datasource,"newcolumn1",value),
"newcolumn2",newcolumn1+1
)

In the example above, newcolumn2 is the result of newcolumn1, but with 1 added to it.

 

Let me know if this helps.

 

Mr. Dang

 

_

Microsoft Employee
@8bitclassroom


@mr-dang wrote:

 

 

Your formulas did not work because AddColumns is not an 'active' action--it is temporarily applied (unless its result is collected, in which case the collection maintains the column).


 

 

 

Why call it AddColumns when it doesn't actually add a column to a table.

 

It should be AddColumns(Source,NewTable,ColumnName,Expression) or the function name should be changed, but the documentation about the temporary nature of the function should be made MUCH clearer.

 

-------

AddColumns Link"The AddColumns function adds a column to a table, and a formula defines the values in that column. Existing columns remain unmodified."

-------

 

So this is wrong, it doesn't add a column to a table,

It takes the source table, adds a column to a NEW table which needs to be collected or assigned to a different datasource

 

 

 

Note:

It took me over 4 hours before I found this post to explain why it wasn't working correctly.

 

 

 

The crazy logic I am having to use all because there is no looping is just staggering.

 

I have Datasource1 with 20 columns 700+ rows, and Datasource2 with 5 columns and less than 200 rows. In order to try to generate a logical view of just the rows in Datasource1 that are related to DataSource2 I am going to have use 5 temporary collections all because there is no foreach;until or do-while or anything similar. And that doesn't even deal with the delegatable data issue. 

 

 

Anonymous
Not applicable


@mr-dang wrote:

Hi @memsim1010,

If I understand correctly, you would like to have 2 calculated columns for your datasource.

 

Here is your current formula formatted for readability:

ClearCollect(Collection1, 
    AddColumns(SPList.CalcColumn1, "DateValue1", DateValue(CalColumn1), 
    AddColumns(SPList.CalcColumn2, "DateValue2", DateValue(CalcColumn2))
)

My understanding is:

  • You want to create shape your datasource, SPList, by copying it to Collection1 but with two calculated columns, DateValue1 and DateValue2.
  • DateValue1 converts CalcColumn1 into a date value.
  • DateValue2 converts CalcColumn2 into a date value as well.
  • Can you clarify if CalcColumns are the name of the calculated column you want, or if they are the columns you want to operate upon? You may need to swap their spots in my solution if I misunderstood.

 

This is just a syntax error. You can revise your formula to:

ClearCollect(Collection1,
    AddColumns(
        SPList,
    "DateValue1",DateValue(CalcColumn1),
    "DateValue2",DateValue(CalcColumn2)
    )
)

This means, "Create a collection, Collection1, that includes everything in SPList, but with two columns added. The new column DateValue1 will be equal to the DateValue of the contents in CalcColumn1, and the new column DateValue2 will be equal to the DateValue of the contents in CalcColumn2."

 

Here's how AddColumns works:

AddColumns(datasource,"newcolumn1",[value for newcolumn1],"newcolumn2",[value for newcolumn2],...)

The first argument in AddColumns (blue) must be a table or a filter upon a table. In your original syntax, your logic was specifying the name of a column instead.

 

Note that you can add as many calculated columns as you want with a single AddColumns() function. You just need to separate them by commas.

 

However, the caveat is that if you want one calculated column to reference another column you had added (one calculated column relies on the value of another), then you'll need to wrap one AddColumns() around another because the first one would not exist for the second one to exist yet:

 

AddColumns(
    AddColumns(datasource,"newcolumn1",value),
"newcolumn2",newcolumn1+1
)

In the example above, newcolumn2 is the result of newcolumn1, but with 1 added to it.

 

Let me know if this helps.

 

Mr. Dang

 

_



Just wanted to say this worked for me with the same issue-thank you. 

Helpful resources

Announcements

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Tuesday Tip: Community User Groups

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   Today's Tip: Community User Groups and YOU Being part of, starting, or leading a User Group can have many great benefits for our community members who want to learn, share, and connect with others who are interested in the Microsoft Power Platform and the low-code revolution.   When you are part of a User Group, you discover amazing connections, learn incredible things, and build your skills. Some User Groups work in the virtual space, but many meet in physical locations, meaning you have several options when it comes to building community with people who are learning and growing together!   Some of the benefits of our Community User Groups are: Network with like-minded peers and product experts, and get in front of potential employers and clients.Learn from industry experts and influencers and make your own solutions more successful.Access exclusive community space, resources, tools, and support from Microsoft.Collaborate on projects, share best practices, and empower each other. These are just a few of the reasons why our community members love their User Groups. Don't wait. Get involved with (or maybe even start) a User Group today--just follow the tips below to get started.For current or new User Group leaders, all the information you need is here: User Group Leader Get Started GuideOnce you've kicked off your User Group, find the resources you need:  Community User Group ExperienceHave questions about our Community User Groups? Let us know! We are here to help you!

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!  

Tuesday Tip: Getting Started with Private Messages & Macros

Welcome to TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   This Week's Tip: Private Messaging & Macros in Power Apps Community   Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member!   Our Knowledge Base article about private messaging and macros is the best place to find out more. Check it out today and discover some key tips and tricks when it comes to messages and macros:   Private Messaging: Learn how to enable private messages in your community profile and ensure you’re connected with other community membersMacros Explained: Discover the convenience of macros—prewritten text snippets that save time when posting in forums or sending private messagesCreating Macros: Follow simple steps to create your own macros for efficient communication within the Power Apps CommunityUsage Guide: Understand how to apply macros in posts and private messages, enhancing your interaction with the Community For detailed instructions and more information, visit the full page in your community today:Power Apps: Enabling Private Messaging & How to Use Macros (Power Apps)Power Automate: Enabling Private Messaging & How to Use Macros (Power Automate)  Copilot Studio: Enabling Private Messaging &How to Use Macros (Copilot Studio) Power Pages: Enabling Private Messaging & How to Use Macros (Power Pages)

April 4th Copilot Studio Coffee Chat | Recording Now Available

Did you miss the Copilot Studio Coffee Chat on April 4th? This exciting and informative session with Dewain Robinson and Gary Pretty is now available to watch in our Community Galleries!   This AMA discussed how Copilot Studio is using the conversational AI-powered technology to aid and assist in the building of chatbots. Dewain is a Principal Program Manager with Copilot Studio. Gary is a Principal Program Manager with Copilot Studio and Conversational AI. Both of them had great insights to share with the community and answered some very interesting questions!     As part of our ongoing Coffee Chat AMA series, this engaging session gives the Community the unique opportunity to learn more about the latest Power Platform Copilot plans, where we’ll focus, and gain insight into upcoming features. We’re looking forward to hearing from the community at the next AMA, so hang on to your questions!   Watch the recording in the Gallery today: April 4th Copilot Studio Coffee Chat AMA

Top Solution Authors
Top Kudoed Authors
Users online (3,381)