web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Power App : Network Er...
Power Apps
Unanswered

Power App : Network Error when using Patch function: The requested operation is invalid

(0) ShareShare
ReportReport
Posted on by 32
 
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.
Categories:
I have the same question (0)
  • elseb Profile Picture
    774 Moderator on at
          Tech_summary:TextInput4_12,
          Value_propo:TextInput4_14,
          Tech_spect:TextInput4_13,
     
    need:
     
          Tech_summary:TextInput4_12.Text,
          Value_propo:TextInput4_14.Text,
          Tech_spect:TextInput4_13.Text,
     
    also, depending on what you're patching you may need TRL: Dropdown1.Selected.Value, instead of TRL: Dropdown1.Selected,
  • Rajkumar_M Profile Picture
    3,747 Moderator on at

    Hi @Durrani 

     

    Make some changes in your formula,

     

    Patch(
    'Exhibition Competition',
    Defaults('Exhibition Competition'),
    {
    Title: "Exhibition Competition",
    Tech_Title: TextInput4.Text,
    TRL: Dropdown1.Selected.Value, // Assuming the data source expects a text value
    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.Value, // Assuming the data source expects a text value
    Category: TextInput4_11.Text,
    other_comp: TextInput4_10.Text,
    Tech_summary: TextInput4_12.Text,
    Value_propo: TextInput4_14.Text,
    Tech_spect: TextInput4_13.Text,
    Tech_pict: AddMediaWithImage1.Media // Assuming this is the correct property
    }
    );

    Navigate(End);

     

    Thanks!

     

    If my response has been helpful in resolving your issue, I kindly request that you consider clicking "Accept as solution" and "giving it a thumbs up" as a token of appreciation.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Congratulations to the March Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
11manish Profile Picture

11manish 534

#2
WarrenBelz Profile Picture

WarrenBelz 416 Most Valuable Professional

#3
Valantis Profile Picture

Valantis 306

Last 30 days Overall leaderboard