Hi,
I've got the following data layout,
Item | Assigned | |
1 | Person1 | |
2 | Person1 | |
3 | Person1 | |
4 | Person1 | |
5 | ||
6 | ||
7 | ||
8 | ||
9 | ||
10 | Person3 | |
11 | ||
12 | ||
13 | ||
14 | ||
15 | ||
16 | ||
17 | ||
18 | Person2 | |
19 | Person2 | |
20 | Person2 | |
….1000 records |
The goal or idea is allow a person input a number which represents a batch of available sequential numbers.
For instance "person 4" wants a batch of 5 items.
The powerapp should assign "person 4" to the following available slots.
The powerapp must always be able to find available sequential numbers in batches based on the amount input.
Item | Assigned | |
1 | Person1 | |
2 | Person1 | |
3 | Person1 | |
4 | Person1 | |
5 | Person4 | |
6 | Person4 | |
7 | Person4 | |
8 | Person4 | |
9 | Person4 | |
10 | Person3 | |
11 | ||
12 | ||
13 | ||
14 | ||
15 | ||
16 | ||
17 | ||
18 | Person2 | |
19 | Person2 | |
20 | Person2 | |
….1000 |
Need help to figure out how to achieve this. Anyone know?
Solved! Go to Solution.
Oh this is a fun problem!
We need each record to be aware of its neighboring records. Thinking in this direction, we'll try to find what records are nearby that would be consecutive below it (min) and above it (max). This gets us a range of Item #s which we can filter later.
For best performance, let's Collect the entire set of Items locally. We can shape the Items very easily in collections with no limits by delegation or delay due to calls to a connected data source.
Execute this action in a button or OnVisible:
ClearCollect(colItems,Items)
This means, "Collect all of the Items from the table to a collection called colItems."
Our collection can compare against itself--and at multiple levels. We will need to make each row of colItems compare against the same rows of the table. If you were to try this against the connected datasource, it would not be very performant at all--don't do that.
The diagram below shows an example of 3 levels of colItems comparing against itself:
Filter(
AddColumns(
colItems,
"Min",
// Find the lowest consecutive Item.
If(
IsBlank(Assigned),
Min(
// Return the given Item as the lower boundary if no others are found nearby.
Item,
Min(
// For each Item, look at all blank items before it.
Filter(RenameColumns(Sort(Items,Item),"Item","ItemID_1"),
IsBlank(Assigned),
ItemID_1<Item,
// Determine if a record is consecutive if its distance to the main Item is equal to the amount of records in between.
// A record is not consecutive if another Item had been assigned in between, throwing off the count.
Abs(ItemID_1-Item)=CountRows(Filter(RenameColumns(Sort(Items,Item),"Item","ItemID_2"),IsBlank(Assigned),ItemID_2<Item,ItemID_2>=ItemID_1))
),
ItemID_1
)
)
),
"Max",
// Find the highest consecutive Item.
If(
IsBlank(Assigned),
Max(
Item,
Max(
Filter(RenameColumns(Items,"Item","ItemID_1"),
IsBlank(Assigned),
ItemID_1>Item,
Abs(ItemID_1-Item)=CountRows(Filter(RenameColumns(Sort(Items,Item),"Item","ItemID_2"),IsBlank(Assigned),ItemID_2>Item,ItemID_2<=ItemID_1))
),
ItemID_1
)
)
)
),
Max-Min+1>=Slider1.Value
)
Let's break apart the calculation for Min. Note I did not put many comments into Max since it's a similar pattern, only opposite.
If(
IsBlank(Assigned),
Min(
// Return the given Item as the lower boundary if no others are found nearby.
Item,
Min(
// For each Item, look at all blank items before it.
Filter(RenameColumns(Sort(Items,Item),"Item","ItemID_1"),
IsBlank(Assigned),
ItemID_1<Item,
// Determine if a record is consecutive if its distance to the main Item is equal to the amount of records in between.
// A record is not consecutive if another Item had been assigned in between, throwing off the count.
Abs(ItemID_1-Item)=CountRows(Filter(RenameColumns(Sort(Items,Item),"Item","ItemID_2"),IsBlank(Assigned),ItemID_2<Item,ItemID_2>=ItemID_1))
),
ItemID_1
)
)
)
You can see the attached app for an example of this in action.
Let me know if this was helpful.
Mr. Dang
Oh this is a fun problem!
We need each record to be aware of its neighboring records. Thinking in this direction, we'll try to find what records are nearby that would be consecutive below it (min) and above it (max). This gets us a range of Item #s which we can filter later.
For best performance, let's Collect the entire set of Items locally. We can shape the Items very easily in collections with no limits by delegation or delay due to calls to a connected data source.
Execute this action in a button or OnVisible:
ClearCollect(colItems,Items)
This means, "Collect all of the Items from the table to a collection called colItems."
Our collection can compare against itself--and at multiple levels. We will need to make each row of colItems compare against the same rows of the table. If you were to try this against the connected datasource, it would not be very performant at all--don't do that.
The diagram below shows an example of 3 levels of colItems comparing against itself:
Filter(
AddColumns(
colItems,
"Min",
// Find the lowest consecutive Item.
If(
IsBlank(Assigned),
Min(
// Return the given Item as the lower boundary if no others are found nearby.
Item,
Min(
// For each Item, look at all blank items before it.
Filter(RenameColumns(Sort(Items,Item),"Item","ItemID_1"),
IsBlank(Assigned),
ItemID_1<Item,
// Determine if a record is consecutive if its distance to the main Item is equal to the amount of records in between.
// A record is not consecutive if another Item had been assigned in between, throwing off the count.
Abs(ItemID_1-Item)=CountRows(Filter(RenameColumns(Sort(Items,Item),"Item","ItemID_2"),IsBlank(Assigned),ItemID_2<Item,ItemID_2>=ItemID_1))
),
ItemID_1
)
)
),
"Max",
// Find the highest consecutive Item.
If(
IsBlank(Assigned),
Max(
Item,
Max(
Filter(RenameColumns(Items,"Item","ItemID_1"),
IsBlank(Assigned),
ItemID_1>Item,
Abs(ItemID_1-Item)=CountRows(Filter(RenameColumns(Sort(Items,Item),"Item","ItemID_2"),IsBlank(Assigned),ItemID_2>Item,ItemID_2<=ItemID_1))
),
ItemID_1
)
)
)
),
Max-Min+1>=Slider1.Value
)
Let's break apart the calculation for Min. Note I did not put many comments into Max since it's a similar pattern, only opposite.
If(
IsBlank(Assigned),
Min(
// Return the given Item as the lower boundary if no others are found nearby.
Item,
Min(
// For each Item, look at all blank items before it.
Filter(RenameColumns(Sort(Items,Item),"Item","ItemID_1"),
IsBlank(Assigned),
ItemID_1<Item,
// Determine if a record is consecutive if its distance to the main Item is equal to the amount of records in between.
// A record is not consecutive if another Item had been assigned in between, throwing off the count.
Abs(ItemID_1-Item)=CountRows(Filter(RenameColumns(Sort(Items,Item),"Item","ItemID_2"),IsBlank(Assigned),ItemID_2<Item,ItemID_2>=ItemID_1))
),
ItemID_1
)
)
)
You can see the attached app for an example of this in action.
Let me know if this was helpful.
Mr. Dang
Hi Mr Dang,
Big Fan of your work! This made my day.
Downloaded the sample app and its a massive help. Going over code as much as I can. Thank you, for the explanations.
I've applied the code to the "onchange" property of the slicer in order to take the results into another collection. My next step is linking a gallery to the new collection for multi selection editing which will then be written back to the source.
This was very helpful and the desired result looks achievable, will let you know. Thank you!
Big Fan! From South Africa.
I'm happy this was helpful. It is incomplete though as you'll probably need to use GroupBy to stick together each set of Items. Good luck with the rest of it and feel free to share your add-ons so others can learn from you. 🤓
Like bait to a fish "It is incomplete though as you'll probably need to use GroupBy to stick together each set of Items".
If assuming correctly, we'll create a index number for each batch/group on a new column? Yeah that'll be great.
What did you have in mind?
In its current form, the app reduces the Items to only the unassigned items. But each Item is still an individual record. If you click 7, you will only have 7 selected. But what you actually want is to select 5-9 with one click.
The GroupBy function takes one column of that table and effectively looks for unique values. In the image above, 5 and 11 are the two unique values for Min. Then for each unique value, it creates a child table of the rows that match.
If I were to use the formula below:
GroupBy(the_entire_formula_shared_earlier, "Min", "ItemSet")
This creates a table with two rows under the Min column: 5, 11.
Beside the row for 5 is a table whose name is ItemSet and contains items 5-9 since they match the value of 5 in the Min column.
Beside the row for 11 is a table of items 11-17.
The child table would contain columns for Item, Assigned, and Max.
Now that the items are grouped, you can take action on a selected group.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
190 | |
53 | |
51 | |
35 | |
33 |
User | Count |
---|---|
268 | |
91 | |
80 | |
68 | |
67 |