Hello everybody 🙂
I'm trying to replicate a sharepoint form cutomized with powerapps.
This form is used to enroll students in courses that have a limited number of participants.
The form is made up of the following Data Cards:
- Last Name
- First name
- Course
- email
- Electives
- Lectures
- Dates
-Places Available
- Note
- Elective ID
- Booked
in the "Booked" DataCard there is an input type field called DataCardValue_Booked.
The following code is present in the Default property of this field:
If(SharePointForm1.Mode = 1;LookUp('Electives List'; ID = ComboBox_Corsi.Selected.Id;
Total_x0020_number_x0020_of_x002); Parent.Default)
- Where 'Elective List' is the name of the list
- ComboBox_Courses is the name of the combobox through which you choose the type of course.
I can't understand what Total_x0020_number_x0020_of_x002 means
I know Sharepoint uses x0020 to identify spaces in urls, so I'm assuming this piece of code comes from a url.
I hope someone can help me understand, thanks in advance 🙂