Hi,
I am working on flow to retrieve the smallest value of stock of a kit.
i.e. Kit A has components B and C. Stock value for B is 5 and C is 2. Hence sale able qty for Complete KIT A is 2
my JSON schema below.
{
"product": "IRE1003",
"lines": {
"line": [
{
"product": "28CI127",
"description": "100cm Mirror ",
"key": null,
"quantity": "1",
"free": "5",
"companyonorder": "20.00"
},
{
"product": "E60CI",
"description": "LED Light",
"key": null,
"quantity": "1",
"free": "17",
"companyonorder": "0.00"
}
]
}
How can I assign the smallest value from objects in Array to another Object.
Desired Answer
{
"product": "IRE1003",
"Stock": "5"
}
If you can point me to right direction please.
Thank you in advance.
Solved! Go to Solution.
Great solution @Paulie78 🙂
Btw, I think in that last compose you are collecting the individual product id and not the product kit number.
I believe that expression should be:
outputs('Compose')['product']
@Expiscornovus oh yeah, thanks for the correction and compliment. 👍
It was actually an interesting question to try out. I did it once and it had an apply each loop. I wanted a solution with no loops!
Thanks Paulie,
Didn't realise we can use Select operation Mapping this way.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Announcing a new way to share your feedback with the Power Automate Team.
Learn to digitize and optimize business processes and connect all your applications to share data in real time.
User | Count |
---|---|
69 | |
21 | |
18 | |
17 | |
13 |
User | Count |
---|---|
125 | |
37 | |
29 | |
28 | |
26 |