I try to implement same way if ID =1 until ID =7 same text input value & another ID=8 until ID 14 same text input value. I'm not sure is correct or not:
With(
{
Data_Red:
FirstN(
colPDR1Red,
7
)
},
ForAll(
Data_Red As _D,
Patch(
colPDR1Red,
LookUp(
colPDR1Red,
ItemNo = _D.ItemNo
),
{Location: Value(Self.Text)
}
)
)
);
With(
{
Data_Red1:
LastN(
colPDR1Red,
7
)
},
ForAll(
Data_Red1 As _D1,
Patch(
colPDR1Red,
LookUp(
colPDR1Red,
ItemNo = _D1.ItemNo
),
{Location: Value(Self.Text)
}
)
)
);