@PowerAddict @mdevaney and other experts.
I am now in the development of the Inventory Module. But the data are all over as below,
All of them has a unique identifier for the stock which is the Brand + model number
How can I develop the inventory module to show ?
What is the balance, total in, total out for each model
Your humble Student Osmand
Solved! Go to Solution.
You can use a lookup to access the ancillary lists using your brand and model number to provide the linkage. The statement to get the stock value from the Orders list might look something like:
Set(CurrentStock, Lookup(Orders, OBrand = PBrand && OModel = PModel).OStock)
where the O columns come from the Orders list and the P columns are the corresponding columns on the product list (or whatever the primary driver list happens to be). CurrentStock would be a global value to hold the value you need to retrieve from Orders.
Similar lookups could be crafted for each of the lists from which you need to retrieve information.
You can use a lookup to access the ancillary lists using your brand and model number to provide the linkage. The statement to get the stock value from the Orders list might look something like:
Set(CurrentStock, Lookup(Orders, OBrand = PBrand && OModel = PModel).OStock)
where the O columns come from the Orders list and the P columns are the corresponding columns on the product list (or whatever the primary driver list happens to be). CurrentStock would be a global value to hold the value you need to retrieve from Orders.
Similar lookups could be crafted for each of the lists from which you need to retrieve information.
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
206 | |
187 | |
82 | |
51 | |
37 |
User | Count |
---|---|
288 | |
244 | |
121 | |
76 | |
55 |