Hello Everyone,
Sorry, I'm new to development and PowerApps and have a question for the community.
I'm currently, working on an app for our company in which form entries are automatically collected and stored in a Sharepoint list. Each entry has a unique identifier column and for any new entry we would like to collect the previous entry for that unique identifier.
For Example:
User1@contoso.com submits an entry for vehicle VIN (Unique Identifier) and then opens the form later on to submit another entry for that same VIN.
User2@contoso.com submits an entry for vehicle VIN (Unique Identifier) and then opens the form once again to submit another entry for the same VIN.
Date | VIN (Unique Identifier) | Starting Mileage | |
08/03/20 | user1@contoso.com | XXXX123 | 45,000 |
08/03/20 | user2@contoso.com | XXXX432 | 58,000 |
08/04/20 | user1@contoso.com | XXXX123 | 45,050 |
08/04/20 | user2@contoso.com | XXXX432 | 68,200 |
Is it possible to for PowerApps Form entry to automatically pull the previous information for that VIN (Unique Identifier).
For example:
New Form Entry:
Date | Blank |
Blank | |
Vehicle VIN (Unique Identifier) | Select |
Starting Mileage: | If the above VIN is selected, look at the last entry submitted for that VIN and display value here. |
|
Is this possible?
Thank you,
Solved! Go to Solution.
Yes, so what I was suggesting was based on having your Vehicle VIN's in a separate list. Based on what you are doing in this list - which is entering records of information based on a particular VIN, I had assumed that you had the VIN's a separate list.
It's your design, but my recommendation is that you get rid of the Choice column and replace it with a text column. Create a separate list with the VIN's in it (and perhaps other relevant information about that vehicle - make, model, license, year, etc.)
Then, in your app, you would reference that list in the DropDown - ex. VehicleList.VIN and ultimately you would store that VIN in your Vehicle Mileage Report list (or better yet, the ID of the Vehicle record...but let's at least start with the unique VIN).
I hope that makes sense. I believe you will have a much more maintainable app in general as you could also design an app to maintain and update the Vehicle List. This way, no one has to dig through SharePoint choice columns to add, remove or change a vehicle if the fleet changes. I designed a slick Fleet Manager app that uses these principles, but the key was that regular users needed to maintain the vehicle list. Going into SharePoint choice columns was not an option for the user knowledge levels.
First, when you say "Form" - are you actually using an EditForm? If so, then you will have this ability built in.
If this is a custom form, then you will need to provide that functionality yourself.
Usually, you will have some sort of Gallery, DropDown, Table, etc. that you are selecting the vehicle from. Let's say in this case it is Gallery1.
For your fields on your form then you will be able to use these formulas on the Default properties of your text input controls (This one for Starting Mileage):
First(
SortByColumns(
Filter(yourDataSource, VIN=Gallery1.Selected.VIN),
"Date", Descending
)
).'Starting Mileage'
This will filter the data by the unique VIN and then sort by the dates and then take the First (in this case sorting descending, so the first it the last) and then use the property associated with it.
I hope this is helpful for you.
Yes, I'm using EdithForm and not a custom form and I have a dropdown DataCardValue. Well hope that makes sense. 🙂
Also, thanks for the quick reply but unfortunately my code is not working. Below are my values:
The Table (SharepointList) containing date is = Vehicle.Mileage.Report_1
The column with date and time on table Vehicle.Mileage.Report_1= Title
The column containing the VIN = Vehicle Vin_DataCard1
The selection is made on = Datacardvalue4
The result will need to go to = Datacardvalue1
This how i plugged the information you provided.
First(
SortByColumns(
Filter([@'Vehicle Mileage Report_1'],'Vehicle VIN'=DataCardValue4.Selected.Value,
"Date", Descending
)
).'Beginning Mileage'
Also, how can I enter a "0" value if none is found?
Thank you,
So if you are using an EditForm, then it is already tied to all the values. All you need to do is provide the Item for it to display/edit. This is done through the Item property of the form.
Again, if you have a gallery where you are selecting these vehicles, then you can set the Item property to yourGallery.Selected
If that is not the case, then tell me more about your scenario.
I am not sure what you mean by "how can I enter a "0" value if none is found?". Can you elaborate?
Yes. I don't have a gallery for the selections. My Vehicle VIN selections are coming from a SharePoint List as a drop down entry. Please view the image below for additional information. I know I am not using the right terminology but hoping that the picture displays what we're trying to achieve.
I was able to modify your code and add one entry but it shows the same entry for all Vehicle VINs selected and unfortunately this will not work since every Vehicle VIN has a different beginning mileage entry.
This is the code that filters and shows entry.
First(
SortByColumns(
Filter([@'Vehicle Mileage Report_1'],DataCardValue4="1GNXXXXXXXXX4883"),
"Title",Ascending
)
).'Beginning Mileage'
So it appears that you have an EditForm and you have modified the first datacard with a ComboBox to show vehicle VINs from the same list or a different list?
Okay...almost there. What is the Items property of your ComboBox?
Okay, then your Default property on the DataCard for Beginning Mileage should be:
Coalesce(
First(
SortByColumns(
Filter('Vehicle Mileage Report_123','Vehicle VIN'=DataCardValue4.Selected.Value,
"Date", Descending
)
).'Beginning Mileage',
0
)
Your Default property for DataCardValue1 (I believe that is the control you have in your Beginning Mileage datacard) should be : Parent.Default
Episode Seven of Power Platform Connections sees David Warner and Hugo Bernier talk to Microsoft MVP Dian Taylor, alongside the latest news, product reviews, and community blogs. Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show! Show schedule in this episode: 0:00 Cold Open 00:30 Show Intro 01:02 Dian Taylor Interview 18:03 Blogs & Articles 26:55 Outro & Bloopers Check out the blogs and articles featured in this week’s episode: https://francomusso.com/create-a-drag-and-drop-experience-to-upload-case-attachments @crmbizcoach https://www.youtube.com/watch?v=G3522H834Ro/ @pranavkhuranauk https://github.com/pnp/powerapps-designtoolkit/tree/main/materialdesign%20components @MMe2K https://2die4it.com/2023/03/27/populate-a-dynamic-microsoft-word-template-in-power-automate-flow/ @StefanS365 https://d365goddess.com/viva-sales-administrator-settings/ @D365Goddess https://marketplace.visualstudio.com/items?itemName=megel.mme2k-powerapps-helper#Visualize_Dataverse... @MMe2K Action requested: Feel free to provide feedback on how we can make our community more inclusive and diverse. This episode premiered live on our YouTube at 12pm PST on Thursday 30th March 2023. Video series available at Power Platform Community YouTube channel. Upcoming events: Business Applications Launch – April 4th – Free and Virtual! M365 Conference - May 1-5th - Las Vegas Power Apps Developers Summit – May 19-20th - London European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas Join our Communities: Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions.
Super Users – 2023 Season 1 We are excited to kick off the Power Users Super User Program for 2023 - Season 1. The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts. Super User Season 1 | Contributions July 1, 2022 – December 31, 2022 Super User Season 2 | Contributions January 1, 2023 – June 30, 2023 Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile. Power Apps Power Automate Power Virtual Agents Power Pages Pstork1* Pstork1* Pstork1* OliverRodrigues BCBuizer Expiscornovus* Expiscornovus* ragavanrajan AhmedSalih grantjenkins renatoromao Mira_Ghaly* Mira_Ghaly* Sundeep_Malik* Sundeep_Malik* SudeepGhatakNZ* SudeepGhatakNZ* StretchFredrik* StretchFredrik* 365-Assist* 365-Assist* cha_cha ekarim2020 timl Hardesh15 iAm_ManCat annajhaveri SebS Rhiassuring LaurensM abm TheRobRush Ankesh_49 WiZey lbendlin Nogueira1306 Kaif_Siddique victorcp RobElliott dpoggemann srduval SBax CFernandes Roverandom schwibach Akser CraigStewart PowerRanger MichaelAnnis subsguts David_MA EricRegnier edgonzales zmansuri GeorgiosG ChrisPiasecki ryule AmDev fchopo phipps0218 tom_riha theapurva takolota Akash17 momlo BCLS776 Shuvam-rpa rampprakash ScottShearer Rusk ChristianAbata cchannon Koen5 a33ik Heartholme AaronKnox Matren Alex_10 Jeff_Thorpe poweractivate Ramole DianaBirkelbach DavidZoon AJ_Z PriyankaGeethik BrianS StalinPonnusamy HamidBee CNT Anonymous_Hippo Anchov KeithAtherton alaabitar Tolu_Victor KRider sperry1625 IPC_ahaas zuurg rubin_boer cwebb365 Dorrinda G1124 Gabibalaban Manan-Malhotra jcfDaniel WarrenBelz Waegemma If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances. Once they are received the list will be updated.
We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida. Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more. Register today: https://www.powerplatformconf.com/
We are excited to share the ‘Power Platform Communities Front Door’ experience with you! Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well. Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities. Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform. Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.
Welcome! Congratulations on joining the Microsoft Power Apps community! You are now a part of a vibrant group of peers and industry experts who are here to network, share knowledge, and even have a little fun! Now that you are a member, you can enjoy the following resources: The Microsoft Power Apps Community Forums If you are looking for support with any part of Microsoft Power Apps, our forums are the place to go. They are titled "Get Help with Microsoft Power Apps " and there you will find thousands of technical professionals with years of experience who are ready and eager to answer your questions. You now have the ability to post, reply and give "kudos" on the Power Apps community forums! Make sure you conduct a quick search before creating a new post because your question may have already been asked and answered! Microsoft Power Apps IdeasDo you have an idea to improve the Microsoft Power Apps experience, or a feature request for future product updates? Then the "Power Apps Ideas" section is where you can contribute your suggestions and vote for ideas posted by other community members. We constantly look to the most voted Ideas when planning updates, so your suggestions and votes will always make a difference. Community Blog & NewsOver the years, more than 600 Power Apps Community Blog Articles have been written and published by our thriving community. Our community members have learned some excellent tips and have keen insights on building Power Apps. On the Power Apps Community Blog, read the latest Power Apps related posts from our community blog authors around the world. Let us know if you would like to become an author and contribute your own writing — everything Power Apps related is welcome! Power Apps Samples, Learning and Videos GalleriesOur galleries have a little bit of everything to do with Power Apps. Our galleries are great for finding inspiration for your next app or component. You can view, comment and kudo the apps and component gallery to see what others have created! Or share Power Apps that you have created with other Power Apps enthusiasts. Along with all of that awesome content, there is the Power Apps Community Video & MBAS gallery where you can watch tutorials and demos by Microsoft staff, partners, and community gurus in our community video gallery. Again, we are excited to welcome you to the Microsoft Power Apps community family! Whether you are brand new to the world of process automation or you are a seasoned Power Apps veteran. Our goal is to shape the community to be your ‘go to’ for support, networking, education, inspiration and encouragement as we enjoy this adventure together! Let us know in the Community Feedback if you have any questions or comments about your community experience.To learn more about the community and your account be sure to visit our Community Support Area boards to learn more! We look forward to seeing you in the Power Apps Community!The Power Apps Team
User | Count |
---|---|
155 | |
98 | |
75 | |
73 | |
63 |
User | Count |
---|---|
259 | |
169 | |
105 | |
96 | |
92 |