Hi,
My project is the following:
- I have 10 custom forms, each in their own tab, for users to fill and submit. At least 1 is required.
- For 8 fields, there are multiple values associated with them;
For example -> unit1: {jan:10, feb:28, march:23...} and so on for every month, same for unit2, unit 3, and the rest.
In order to not have to make more than 24 columns for each month/unit, I decided to submit each month's value in a JSON object, or dictionary like in Python, to Sharepoint List. Hence, there will only be 8 columns corresponding to each "unit"
Am I able to do this? If so, how?
Also, how do I make custom functions to collect the data from the fields and patch to the Sharepoint List, since I have 10 custom forms? I'm trying to follow DRY principle here, with the condition that the first form is required no matter what. I saw that there is an experimental feature to create functions in components, but I'm not sure how to implement it. If there's any other way too, what is it?
I appreciate all the help! I'm fairly new to PowerApps, so I'm still learning all of this.