cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
KyleShriver
Frequent Visitor

Dynamically Display SharePoint Columns based on month

Hello-

 

I am looking to dynamically display columns in my app based on the current month.

 

In my SharePoint list, I have a column for every month.

 

In my PowerApp, if the month is April 2019, I want to be able to display the column 'April 2019' and the next 6 columns. When the month switches to May, I want to display the next 6 columns after that.

 

I have created variables that will store current month, and can do some DateAdd with them... but can't figure out how to use the variable(s) as a column in a gallery.

1 ACCEPTED SOLUTION

Accepted Solutions

 

@KyleShriver 

 

First because of the goal of your app I expect that the number of lines will get big over time. From this I would advise you to go for SQL as your datasource if you can. With SQL you will be able to make your apps preform quicker and more reliable. Also extracting data in reports, digital file like EDI/XML and Power BI will be a lot easier and more flexible. Also retrieving data to PowerApps is far easier, for example if you have a datecolum you can extract the last 30 days by a simple formula:

 

Select [columns] for table
Where 1 = 1
AND DateColumn = Getdate() - 30

 

 

If you still want to use SharePoint you should add one or two number columns extra to your table beside the datecolumn you have for the date of the time registration. One for the year (2019) and one for the month (01,02,03,04, enz.). I don't do a lot with SharePoint but I thing you could make this a calculated column based on the datecolumn. If this is not working you can use SharePoint Designer 2013, which you can download from your Office365 home screen - Install Office - Other Installation Options - Tool & Add-In. With this designer you can add a tricker on your list which calculates the year and month after created/Modify.

This fields you use to filter the records you want to return to PowerApps and will give you delegatable formula options.

 

Look at how to set-up a nice list like solution you could check my YouTube channel, were I share some of the design patterns I use. Maybe start with this video
https://youtu.be/f-OZvEGdq9c?list=PL2zsZutKZiTPBnHR1-NnqewollxBfpqbE 

 

Hope this helps.

 

Paul

View solution in original post

8 REPLIES 8
v-yuxima-msft
Community Support
Community Support

Hi @KyleShriver ,

 

You can try the following workaround, and I test as next:

Data Source:

20190416dynamicsMonthsDataSource.PNG

App Test:

Gallery.Items:Filter('20190416dynamicallyMonth',Month(DateFrom) >= Month(Today()) && Month(DateFrom)< Month(Today())+6)            ('20190416dynamicallyMonth' is my data source name,you can change to yours on your side)

20190416dynamicsMonthsTest.PNG

 

Hope this could be helpful.

 

Best Regards.

Yumia

Mr-Dang-MSFT
Power Apps
Power Apps

Hi @KyleShriver , this is a good question about data architecture: what are best practices for structuring columns?

 

I recall answering a very similar question recently, but I've not been able to locate the link. You can try searching for 'relational data.'

 

Big idea: having each column as April 2019, May 2019, June 2019... etc. is a useful view in spreadsheets. In a database though, because each column name is different, doing searches is very difficult with changing columns. Instead, it is better to collapse all the date data into a single date column. 

 

Depending on your datasource, the table can be filtered to show data in different date ranges. 

Hi @Mr-Dang-MSFT , 

 

Thanks for bringing a different perspective. I'm not quite clear on what you are recommending though.

 

This application is actually coming from a spreadsheet perpective that has become too massive and I'm working on redesigning.

 

My datasource is going to be SharePoint. The application is used to track/plan a person's time/allocation across projects. Currently, a person will have several records, one for each project. Each of those records could potentially have different allocations for their time. Say, 10% of their time in April, and 25% of their time in May.

Hi @KyleShriver, sorry I did not go into more detail. It is indeed a big question on how to best setup a table so you could run filters against it. 

 

Let me loop in @Drrickryp @who had written a very good piece on relational databases. Also adding @seadude @DavesTechTips @KroonOfficeSol who are very disciplined with setting up good tables and can share some best practices here.

 

@KyleShriver 

 

First because of the goal of your app I expect that the number of lines will get big over time. From this I would advise you to go for SQL as your datasource if you can. With SQL you will be able to make your apps preform quicker and more reliable. Also extracting data in reports, digital file like EDI/XML and Power BI will be a lot easier and more flexible. Also retrieving data to PowerApps is far easier, for example if you have a datecolum you can extract the last 30 days by a simple formula:

 

Select [columns] for table
Where 1 = 1
AND DateColumn = Getdate() - 30

 

 

If you still want to use SharePoint you should add one or two number columns extra to your table beside the datecolumn you have for the date of the time registration. One for the year (2019) and one for the month (01,02,03,04, enz.). I don't do a lot with SharePoint but I thing you could make this a calculated column based on the datecolumn. If this is not working you can use SharePoint Designer 2013, which you can download from your Office365 home screen - Install Office - Other Installation Options - Tool & Add-In. With this designer you can add a tricker on your list which calculates the year and month after created/Modify.

This fields you use to filter the records you want to return to PowerApps and will give you delegatable formula options.

 

Look at how to set-up a nice list like solution you could check my YouTube channel, were I share some of the design patterns I use. Maybe start with this video
https://youtu.be/f-OZvEGdq9c?list=PL2zsZutKZiTPBnHR1-NnqewollxBfpqbE 

 

Hope this helps.

 

Paul

Hi everyone,

 

I agree that adding multiple columns to the data for each month seems to present more challenges in future than what it is worth currently.

 

I also agree that SQL would be more suitable in the long term and would allow for much more options for the specified requirement. It will also allow for a computed integer column to be added (and marked as persisted) in order to do = , > , < operations against as is suggested above by @KroonOfficeSol and @v-yuxima-msft

 

If you have to use SharePoint however, date filters are unfortunately not delegatable which means that when you reach 500 (can be increased to 2000 under app settings) records in the list, your filters will only ever use the first 500 (or 2000) records which is less than ideal 😉 Another unfortunate thing about SharePoint is that calculated columns are not delegatable either so you won't be able to add a calculated int column as is the case in SQL. Depending on the type of application you could have added choice columns for the year and month for the user to select, but unfortunately choice columns are not delegatable either.

 

The other option would be to use Flow to fetch the data and return it to PowerApps. Flow can use ODATA queries to get to the correct data and then possibly manipulate or join the data with other services before returning it to PowerApps. I love this approach and it has come in extremely handy in the past. Some might say that using a flow for retrieving data might feel 'expensive' but it does allow for many different functional and security options going forward.

 

I made a quick video to demo what can be achieved with this. Please see below and let us know if you have any questions or suggestions:

https://youtu.be/m_j_xN7-LjU

 

Twitter: @dawidvh

YouTube: https://www.youtube.com/user/dawidvanheerden
**If you found this reply helpful, please mark this as the answer to close the topic and make it easier to find for other people with similar questions. AND we get points for it 😉

 

I've set up an Azure SQL db and its definitely the way to go. You all inspired me to think in a more relational database perspective, so thank you all.

Thanks @KroonOfficeSol and @DavesTechTips  for your suggestions, rationale, and even links to videos. I knew you'd be the right experts 🙂

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,924)