Hi guys Im quite new in power apps here. The project that I am doing Power app canva project where there are few slides. each slide has some text box to fill. I use the patch function at the end of the slide when they clicked the end button. Here is my code:
Patch(
'Exhibition Competition',
Defaults('Exhibition Competition'),
{
Title: "Exhibition Competition",
Tech_Title: TextInput4.Text,
TRL: Dropdown1.Selected,
Leader: TextInput4_1.Text,
Institute: TextInput4_5.Text,
Team: TextInput4_2.Text,
Type_of_IP: TextInput4_3.Text,
IP_status: TextInput4_6.Text,
IP_ID: TextInput4_7.Text,
Comm_status: TextInput4_4.Text,
Target_year: TextInput4_8.Text,
Partner: TextInput4_9.Text,
which_comp: Dropdown2.Selected,
Category: TextInput4_11.Text,
other_comp:TextInput4_10.Text,
Tech_summary:TextInput4_12,
Value_propo:TextInput4_14,
Tech_spect:TextInput4_13,
Tech_pict:AddMediaWithImage1
}
);
Navigate(End);
Some of the input such as : Tech_Title: TextInput4.Text,
TRL: Dropdown1.Selected,
Leader:TextInput4_1.Text,
is at the previous slides of the canva, is this the reason why my project ran into error? Looking forward for your guidance. Thank you.