Hi Everyone,
I am trying to create an inventory management tool.. same old problem that I know so many people on here have posted messages about, but I think my problem is a little different.
I've set up a very basic Power App so far from a sharepoint list. There are 3 screens; which were primarily automatically created from the sharepoint list, when I clicked "Integrate, Power Apps, Create an App".
I have since created a Barcode Scanner, which identifies a serial number from a unique QR code, which would be attached to each item in the inventory, returning a 6 digit code. I believe these would be in a text format, but this could be changed to a numerical format using the value (" ") function.
Below is a screenshot of two of the screens. On the LHS, when the scan button is pressed, if the serial number returned from the barcode scanner, matches the serial number for the item of equipment in the inventory (stored in a connected Sharepoint list), then I want the user to get taken to the next screen, e.g. the RHS image.
So far I have been trying with a few if rules with the OnScan feature;
If("BarcodeScanner_S1.Value"="ThisItem.'Serial Number'",Select(Parent),Set(varShowPopup,true))
I believe the Select(Parent) function, will take me through to the second screen on the RHS depicted in the image above. The Set(varShowPopup,true) is just to display a popup if the QR code / serial does not match, however this is a step ahead of where I am currently.
Neither of these work well at the moment though. And I think this whole approach is wrong. As I have tried created an additioanl if/logical test which creates a "1" or "0" in a text box, to assess what is going on. Below is a screenshot of this. But basically I get a 1 (true) appearing in every single row of data, even when I can see the scanned value & equipment serial number don't match up. Also you can see a 1 is automatically assigned to all gallery line items..
(For clarity the numbers 54710 & 21311 are the numbers returned from the barcodescanner_S1.value. These were inserted as a visual check / confirmation for myself).
Very keen to hear back thoughts from anyone on how to get around this. Initially I am looking to ensure that the second screen can only be accessed it a QR code (attached to an item of equipment) is scanned. Once I have achieved this, I will then be looking to set the Power App to automatically update a sepcific data set / column in "SharePoint List", e.g. the "Last Inspected by" Column for the item of equipment that has just been scanned. But I am happy to start figuring out how to solve this problem afterwards 🙂
But I thought I would just mention it here, in case anyone thinks that I am going about this in the wrong approach, and that an alternative method may be more suitable.
Thanks for all assistance in advance.
Solved! Go to Solution.
Hi @Tim_Control ,
Ok, now I get the picture.
I made a mock-up version here. I'll walk you through it...
Delete the BarCodeScanner you added to the Gallery.
Change the size of the Gallery so you get some room between your TextInput and the Gallery.
Add a BarCodeScanner here, and a Button.
It should look a bit like this:
Then change the Items property of the Gallery:
SortByColumns(
Filter(
[@VesselInventory];
StartsWith(
Title;
TextSearchBox1.Text
);
IsBlank(BarcodeScanner1.Value) || SerialCode = BarcodeScanner1.Value
);
"Title";
If(
SortDescending1;
Descending;
Ascending
)
)
You can replace [@VesselInventory] with the name of your Sharepoint List.
Title is the column with the Vessel name.
SerialCode is the column with the serial code.
BarCodeScanner1 is the control (since you made a new one, the name may have changed)
Screenshot of my mockup Sharepoint List:
ButtonResetScanner:
Change the OnSelect:
Reset(BarcodeScanner1)
Ok. Now you user can search for the vessel, then scan and if the barcode is in the list, only one item will show.
When they click on this, they get the next screen.
This way if the scanner doesn't work, they can still manually select items and log their inspection.
The search function can of course be more comprehensive, if you want to search on vessel and equipment, use:
SortByColumns(
Filter(
[@VesselInventory],
StartsWith(
Title,
TextSearchBox1.Text
) || StartsWith(
Equipment,
TextSearchBox1.Text
),
IsBlank(BarcodeScanner1.Value) || SerialCode = BarcodeScanner1.Value
),
"Title",
If(
SortDescending1,
Descending,
Ascending
)
)
Hope this is what you were looking for,
Marc
Hi @Tim_Control ,
It's a bit much to take in, but on first glance a minor adaption could help:
In your version
If(Value("BarcodeScanner_S1.Value")=Value("ThisItem.'Serial Number'"),Select(Parent),Set(varShowPopup,true))
You compare the value of the two strings, not the value of the two references.
Easy fix: drop the quotes (" ")
If(Value(BarcodeScanner_S1.Value)=Value(ThisItem.'Serial Number'),Select(Parent),Set(varShowPopup,true))
Same goes for:
If("BarcodeScanner_S1.Value"="ThisItem.'Serial Number'",Select(Parent),Set(varShowPopup,true))
Drop the quotes:
If(BarcodeScanner_S1.Value=ThisItem.'Serial Number',Select(Parent),Set(varShowPopup,true))
Hope this helps,
Marc
Evening Marc,
Appreciate you looking over this and coming back to me. I did try dropping the quotes, but this appeared to introduce an error. Not quite sure why that is though,.
I'm not sure if it is to do with different data types / formats.
Perhaps i should try to explain again, but in short I'm trying to develop an app to perform the following functions:
-provide operator a list of equipment (from a sharepoint list), which they have to inspect.
-scan a QR code on each piece of equipment instructed
-the power app will compare this QR code to a column of data in the same sharepoint list mentioned above,
-power app will take user to a details "screen" for this equipment item, where it will automatically update some of the sharepoint data / list with new data about the operator who has inspected the equipment, today's date.
-Operator can then repeat this for all items in the sharepoint list.
-if QR codes, equipment scanned does not correlate to a sharepoint list, then no details in the sharepoint list will get automatically accessed / displayed / updated.
So perhaps, based on that explanation, do you think that my idea's above are close to being a workable solution. Or does anyone have a different idea which could deliver similar results.
Thanks,
Tim
Hi @Tim_Control ,
Ok, now I get the picture.
I made a mock-up version here. I'll walk you through it...
Delete the BarCodeScanner you added to the Gallery.
Change the size of the Gallery so you get some room between your TextInput and the Gallery.
Add a BarCodeScanner here, and a Button.
It should look a bit like this:
Then change the Items property of the Gallery:
SortByColumns(
Filter(
[@VesselInventory];
StartsWith(
Title;
TextSearchBox1.Text
);
IsBlank(BarcodeScanner1.Value) || SerialCode = BarcodeScanner1.Value
);
"Title";
If(
SortDescending1;
Descending;
Ascending
)
)
You can replace [@VesselInventory] with the name of your Sharepoint List.
Title is the column with the Vessel name.
SerialCode is the column with the serial code.
BarCodeScanner1 is the control (since you made a new one, the name may have changed)
Screenshot of my mockup Sharepoint List:
ButtonResetScanner:
Change the OnSelect:
Reset(BarcodeScanner1)
Ok. Now you user can search for the vessel, then scan and if the barcode is in the list, only one item will show.
When they click on this, they get the next screen.
This way if the scanner doesn't work, they can still manually select items and log their inspection.
The search function can of course be more comprehensive, if you want to search on vessel and equipment, use:
SortByColumns(
Filter(
[@VesselInventory],
StartsWith(
Title,
TextSearchBox1.Text
) || StartsWith(
Equipment,
TextSearchBox1.Text
),
IsBlank(BarcodeScanner1.Value) || SerialCode = BarcodeScanner1.Value
),
"Title",
If(
SortDescending1,
Descending,
Ascending
)
)
Hope this is what you were looking for,
Marc
Hi Marc,
Thanks for your help and thought put into the above post. I've had a play around and created the same sharepoint list names etc, so that I could mirror what you had done too.
The intention of this QR code, is to be used as a security feature, where they cannot access the subsequent page, unless they have succesfully scanned the QR code. So I think I failed to communicate this clearly unfortunately.
However I have managed to acheive this now though, through adjusting the navigation buttons visibility using an If Function, as per the below screenshot. I have also removed all other Navigate Functions from the Browse Gallery.
I'm going to have a look around on the other forums to get some ideas for the next steps that I need solving. but thank you for your help.
Once again, thanks for your help Marc.
Cheers,
Tim
Dear Community Members, We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd. During this period, members will not be able to Kudo, Comment, or Reply to any posts. On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities. What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!
We are excited to announce the Summer of Solutions Challenge! This challenge is kicking off on Monday, June 17th and will run for (4) weeks. The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities. Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”) - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024 Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods. You must enter into each weekly Entry Period separately. How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different. Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers. At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing. Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner. A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random. Individuals will be contacted before the announcement with the opportunity to claim or deny the prize. Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners. Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event. ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE** Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08 23 @WarrenBelz 31 @DBO_DV 10 @Amik 19 AmínAA 6 @mmbr1606 12 @rzuber 4 @happyume 7 @Giraldoj 3@ANB 6 (tie) @SpongYe 6 (tie) Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08 10@WarrenBelz 25 @DBO_DV 6@mmbr1606 14 @AmínAA 4 @Amik 12 @royg 3 @ANB 10 @AllanDeCastro 2 @SunilPashikanti 5 @Michaelfp 2 @FLMike 5 @eduardo_izzo 2 Meekou 2 @rzuber 2 @Velegandla 2 @PowerPlatform-P 2 @Micaiah 2 Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27 Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8 SunilPashikanti8
On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners. The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights. Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.
We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for. We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer. Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together. Here's to new beginnings and endless possibilities! If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport. To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages