I have a complex issue that it seems.... My app is connected to multiple SP lists. The app has datacards that pull in the server name and the support team. Server name is a combobox that pulls from a different list (application SP list) and the support team is a combobox that pulls from the server SP list. Both the server name and support team are single lines of text in a different SP list (App tool) which is where the data is being stored. Those work like they should, however the next datacard is a build location. The build location was 2 different comboboxes inside the datacard, both pull data from the server list and stores it in the app tool list. The reason for this is because the datacard is going to switch between conditions and store whichever is set. I had build location set to a choice column on the App tool list, and at that point I didn't receive any error messages, however it didn't store to the App tool list. The update for this datacard was this:
If (DataCardValue2.Selected.Value = "New", ComboBox20.Selected,
DataCardValue45.Selected)
^ Now I just tried adding the value name at the end of selected, and got the error message that it expects a table.
I then tried changing the field to a multiple line of text on the app tool list, and the datacard broke. The one combobox inside the datacard, the defaultselecteditems expect a table value and this is what I have:
If (DataCardValue2.Selected.Value = "Replace" ||DataCardValue2.Selected.Value = "Upgrade" || DataCardValue2.Selected.Value = "Add", Filter(serverlist, FriendlyName = ComboBox8_1.Selected.Value).Location, Parent.Default)