So I am building an Inventory management app and currently when you want to add an item to the app you fill out a form and I use
SubmitForm(EditForm)
to update the list.
This form includes the name, part number, location and quantity. What I want is that when the form is filled out, the user clicks submit and IF the part number he has entered already exists in the excel file, the quantity he entered will just be added to the existing quantity in the excel file.
I'm sure this isn't as hard as I think it is but I have tried using an If statement as shown below but it hasnt worked.
If(LookUp(Table1 , 'PartNumber' = PNCard.Text),{Qty:Value( Qty.Text +QtyInputCard.Text))}, SubmitForm(EditForm3);
I am aware this syntax is way off but I'm hoping you can get an Idea as to what I am thinking
Any help will be greatly appreciated, Thanks 🙂