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

Community site session details

Session Id : Znn++EB4+mRVMd8UHWiUdP
Power Apps - Building Power Apps
Unanswered

Object must implement IConvertible.\r\nclientRequestId

Like (0) ShareShare
ReportReport
Posted on 6 Jan 2022 23:50:24 by 10

Good afternoon I am building an app that records in a sharedpoint list but it does not save the record in the list and sends the following error: 

LuisRR_0-1641512545961.png

 

This is the formula :

 

Patch(
BD_2022,
Defaults(BD_2022),
{
SUBDIRECCIÓN: cbosub,   
FECHA_DEL_OFICIO: txtfchofi .Text,
FECHA_DE_INGRESO: txtfching .Text,
FOLIO: txtFolio1 .Text,
AREA_DE_PROCEDENCIA: cbopro,
REMITENTE: txtrem .Text,
AREA_DESTINATARIA: cbodes,
DESTINATARIO: txtdes .Text,
FECHA_DE_RESPUESTA: txtfchres .Text,
VIGENCIA: cbovige,
ESTATUS_DE_ATENCION_DEL_OFICIO: cbostatus,
RESPONSABLE: txtresp .Text,
ASUNTO: txtasun .Text
}
);

LuisRR_1-1641512735791.png

 

 

 

Helpme Pls.

 

Thank's

  • LuisRR Profile Picture
    10 on 09 Jan 2022 at 03:07:44
    Re: Object must implement IConvertible.\r\nclientRequestId
    Lo intenté antes, ahora de nuevo y simplemente no hace nada.
    Como si no hubiera hecho clic

    LuisRR_0-1641697547093.pngLuisRR_1-1641697610982.png

     

  • AngeloG Profile Picture
    31 on 08 Jan 2022 at 08:22:01
    Re: Object must implement IConvertible.\r\nclientRequestId

    Because you're passing your combobox control instead text property of combobox control to patch function.

     

    atch(
    BD_2022,
    Defaults(BD_2022),
    {
    SUBDIRECCIÓN: cbosub,
    FECHA_DEL_OFICIO: txtfchofi .Text,
    FECHA_DE_INGRESO: txtfching .Text,
    FOLIO: txtFolio1 .Text,
    AREA_DE_PROCEDENCIA: cbopro,
    REMITENTE: txtrem .Text,
    AREA_DESTINATARIA: cbodes,
    DESTINATARIO: txtdes .Text,
    FECHA_DE_RESPUESTA: txtfchres .Text,
    VIGENCIA: cbovige,
    ESTATUS_DE_ATENCION_DEL_OFICIO: cbostatus,
    RESPONSABLE: txtresp .Text,
    ASUNTO: txtasun .Text
    }
    );
    Navigate(
    correcto,
    CoverRight
    );

     

    These rows, should replaced with:  ComboboxName.Selected.Value

     

  • LuisRR Profile Picture
    10 on 08 Jan 2022 at 00:54:31
    Re: Object must implement IConvertible.\r\nclientRequestId

    It didn't work, but now if you register in the label.Text, not in the choise attached screens....

    LuisRR_0-1641602994439.pngLuisRR_1-1641603017139.pngLuisRR_2-1641603061029.pngLuisRR_3-1641603082215.pngLuisRR_4-1641603111975.png

    this is the formula

     

    Patch(
    BD_2022,
    Defaults(BD_2022),
    {
    SUBDIRECCIÓN: cbosub,
    FECHA_DEL_OFICIO: txtfchofi .Text,
    FECHA_DE_INGRESO: txtfching .Text,
    FOLIO: txtFolio1 .Text,
    AREA_DE_PROCEDENCIA: cbopro,
    REMITENTE: txtrem .Text,
    AREA_DESTINATARIA: cbodes,
    DESTINATARIO: txtdes .Text,
    FECHA_DE_RESPUESTA: txtfchres .Text,
    VIGENCIA: cbovige,
    ESTATUS_DE_ATENCION_DEL_OFICIO: cbostatus,
    RESPONSABLE: txtresp .Text,
    ASUNTO: txtasun .Text
    }
    );
    Navigate(
    correcto,
    CoverRight
    );

     

     

    Please Help me, I'am very new in PowerApps

  • AngeloG Profile Picture
    31 on 07 Jan 2022 at 08:40:11
    Re: Object must implement IConvertible.\r\nclientRequestId

    Sorry, try something like this:

    ComboboxName.Selected.Value
  • LuisRR Profile Picture
    10 on 07 Jan 2022 at 00:53:06
    Re: Object must implement IConvertible.\r\nclientRequestId

    it didn't work

     

    all the following are a combo box, from a gallery

    SUBDIRECCIÓN: cbosub
    AREA_DE_PROCEDENCIA: cbopro
    AREA_DESTINATARIA: cbodes
    VIGENCIA: cbovige
    ESTATUS_DE_ATENCION_DEL_OFICIO: cbostatus

     

     

     

  • AngeloG Profile Picture
    31 on 07 Jan 2022 at 00:38:10
    Re: Object must implement IConvertible.\r\nclientRequestId

    probably you're passing "control"  instead text properties of you control: try this: 

    Patch(
    BD_2022,
    Defaults(BD_2022),
    {
    SUBDIRECCIÓN: cbosub, 
    FECHA_DEL_OFICIO: txtfchofi.Text,
    FECHA_DE_INGRESO: txtfching.Text,
    FOLIO: txtFolio1.Text,
    AREA_DE_PROCEDENCIA: cbopro.Text,
    REMITENTE: txtrem.Text,
    AREA_DESTINATARIA: cbodes.Text,
    DESTINATARIO: txtdes.Text,
    FECHA_DE_RESPUESTA: txtfchres.Text,
    VIGENCIA: cbovige.Text,
    ESTATUS_DE_ATENCION_DEL_OFICIO: cbostatus,
    RESPONSABLE: txtresp Text,
    ASUNTO: txtasun.Text
    }
    );
  • LuisRR Profile Picture
    10 on 07 Jan 2022 at 00:27:51
    Re: Object must implement IConvertible.\r\nclientRequestId

    LuisRR_0-1641515263986.png

     

  • AngeloG Profile Picture
    31 on 07 Jan 2022 at 00:22:31
    Re: Object must implement IConvertible.\r\nclientRequestId

    This is the screen of your app 😁 let me see list of columns of your SharePoint list. PS: Why you use Patch and draw manually every controls instead use Power Apps Form? 

  • LuisRR Profile Picture
    10 on 07 Jan 2022 at 00:19:36
    Re: Object must implement IConvertible.\r\nclientRequestId
    Clear! .
    
    This is the screen

    LuisRR_0-1641514740665.png

     

  • AngeloG Profile Picture
    31 on 07 Jan 2022 at 00:16:08
    Re: Object must implement IConvertible.\r\nclientRequestId

    Can you post a screenshot of columns type of your list? probably there is a problem with choose colum (AREA_DE_PROCEDENCIA: cbopro or AREA_DESTINATARIA: cbodes etc)

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

Announcing our 2025 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for…

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410 Super User 2025 Season 2

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 2

Loading complete