hi,
im trying to filter for data in a column in dataverse.
i want to send an email to users who meet my filter criteria. which means event_end_date should be exactly 10 days from today.
im currently using Fetch Xml Query but its getting me data that are within the 10 days.
<fetch>
<entity name="um_p012_bus_services">
<attribute name="um_name"/>
<attribute name="um_event_end_date"/>
<filter type="and">
<condition attribute="um_event_end_date" operator="next-x-days" value="10" />
</filter>
</entity>
</fetch>

is there any method that can be used? if yes, i would like suggestions. thank you