Hi all,
I have a power app that is storing data to a SP list called; "Application Onboarding". I also have another SP site called "CSMB_APPLICATION_SUPPORT_INFO". I have a form with a data card that is from application onboading and is called: "servers" and stores the data there. Inside that datacard is a combobox8 that is pulling from the CSMB_APPLICATION_SUPPORT_INFO list. The combobox8 is pulling the server list column which is a single line of text and has multiple servers on 1 record separated by commas. Every time I try to use the split function, it fails and I get this error: "Invalid argument type (table). Expecting a text value instead". This is the code I tried in the Items property:
Split('ServerList', ",")
Split(CSMB_APPLICATION_SUPPORT_INFO.ServerList, ",")
**I am not using a gallery for this.
This comboxbox8 is also filtered to match the choice that was selected from another field (combobox3) in the defaultselecteditems property: (THIS WORKS GREAT)
Filter(CSMB_APPLICATION_SUPPORT_INFO,ApplicationName = ComboBox3.Selected.ApplicationName)