Hi,
I have a Powerapps form linked to Powerapps.
I added 4 labels on the Powerapps form. I also added a + icon.
On the onselect of the + icon, I put the code as below.
However, when I saved & published the form and clicked on the + icon, I am unable to see that a new line with the same labels is added. Please help.
Collect(
InvoiceCollection,
{
CSrNo: Text (2 + (CountRows (InvoiceCollection) + 1) / 10),
CEmpNo: "",
CEmployeeName: "",
CPosition: ""
}
)
Solved! Go to Solution.
HI @cyberco01 ,
The only thing I can see is that the collection refers to itself - try this
With(
{
wNo:
CSrNo: Text(2 + (CountRows (InvoiceCollection) + 1) / 10)
},
Collect(
InvoiceCollection,
{
CSrNo: wNo,
CEmpNo: "",
CEmployeeName: "",
CPosition: ""
}
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Please help dears.
HI @cyberco01 ,
The only thing I can see is that the collection refers to itself - try this
With(
{
wNo:
CSrNo: Text(2 + (CountRows (InvoiceCollection) + 1) / 10)
},
Collect(
InvoiceCollection,
{
CSrNo: wNo,
CEmpNo: "",
CEmployeeName: "",
CPosition: ""
}
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
User | Count |
---|---|
254 | |
101 | |
94 | |
47 | |
37 |