Nov 14 2019 06:24 AM
Hi all. I am very new to CAML Quey in SharePoint, but I want to make a query in a highlighted content web part, with two conditions, and it is not working :(. If I only set one condition, then the results shows up fine, but two conditions, and nothing happens. This is my query:
<View>
<Query>
<OrderBy>
<FieldRef Name="Title"
Ascending="TRUE"></FieldRef>
</OrderBy>
<Where>
<And>
<BeginsWith><FieldRef Name="Title"></FieldRef><Value Type="Text">I-0</Value></BeginsWith>
<BeginsWith><FieldRef Name="Title"></FieldRef><Value Type="Text">I-1</Value></BeginsWith>
</And>
</Where>
</Query>
</View>
Can anyone guide mee in where I am doing something wrong? I have tried with the Or condition as well, but that did not help :(.
Hope some of you hard coders can figure this out.
THX in advance.
/Frank Nielsen, Denmark
Nov 14 2019 09:30 PM
Solution
Hi Frank,
Not sure which version of SharePoint you are usingQuery looks OK for me ,AND condition wont work.
Make sure you use OR condition,However we can design the CAML Query using the UI Tools or google with CAML Query Builder /CAML Designer
here is the link
https://www.biwug.be/resources
I hope this works for Sharepoint online too,just check it.
Nov 14 2019 11:35 PM
@O365Developer THX for quick reply. I am sorry I did not mention wich version of SharePoint I am using. It is SharePoint Online, and I was thinking that the highlitetd webpart in Sharepoint Online is not supporting two CAML conditions. I have seen a lot with SharePoint through the years, so I would not be surprised
I will try your suggestion and use the Or function instead.
/Frank
Nov 14 2019 11:54 PM
Hi @O365Developer The "Or" did the trick. Thanks a lot. I am happy happy
Sep 25 2020 07:04 AM
I have also been trying to get a CAML query functioning in SharePoint online.
1. In addition to the CAML code, do you need any other code inserted into the web part to get the query to work?
2. What web part are you using? I see a "content query" web part as an option. Is this where you insert the code, and then it would apply to the list on that page?
Thanks.
Sep 25 2020 11:53 PM
Hi @miler4199 I am using a highlited webpart in Sharepoint Online Modern, and the trick with changing the And to Or did the magic. The CQWP is located in the old versions of SharePoint, and I am trying to keep up with the modern design.
/Frank
Sep 28 2020 12:43 PM
@Frank Nielsen Thanks. I just realized that CAML queries appear to be valid for SharePoint libraries, but not for lists. There was an option to select a document library, but not a list.
Nov 14 2019 09:30 PM
Solution
Hi Frank,
Not sure which version of SharePoint you are usingQuery looks OK for me ,AND condition wont work.
Make sure you use OR condition,However we can design the CAML Query using the UI Tools or google with CAML Query Builder /CAML Designer
here is the link
https://www.biwug.be/resources
I hope this works for Sharepoint online too,just check it.