0

When I need to update some values in the SharePoint list I create the caml-batch like this:

<Batch ListVersion="1" OnError="Continue">
<Method Cmd="Update" ID="1">
    <Field Name="ID">123</Field>
    <Field Name="MyField">my value</Field>
</Method></Batch>

How can I pass the null-value to such a batch?

igortche
  • 115
  • 1
  • 8

1 Answers1

0

Just pass an empty value.

<Field Name="MyField"></Field>
Mhd. Yasseen
  • 1,027
  • 3
  • 16
  • 27