Hi @golfnutt82,
Do you want to update the Software Inventory New list once you update the Software Users Inventory list?
Could you please share a bit more about your scenario?
Here is what I got from your description:
Once you submit a program name to Software Users Inventory list, you need to sub 1 to the remaining licenses and add 1 to the used licenses, right?
If so, I think you just need to set the OnSuccess property of the form as below:
Patch('Software Inventory_New',LookUp('Software Inventory_New', Program=Form1.LastSubmit.ProgramName.Value),{UsedLicenses:LookUp('Software Inventory_New', Program=Form1.LastSubmit.ProgramName.Value).UsedLicenses+1,RemainingLicenses:LookUp('Software Inventory_New', Program=Form1.LastSubmit.ProgramName.Value).RemainingLicenses-1})
To filter the DataTable based on selected PC name, please set the Items property as below:
Filter('Software Users Inventory',PCName.Value=DataCardValue_PCName.Selected.Value)