Hi @HansHeintz ,
Could you please share a bit more about the "DierEvent" data source? Is it a CDS Entity?
Could you please show more details about the "Boolean" field in your CDS Entity? Is it the "Two Options" type column?
Firstly, there is no data type called "Boolean" in CDS Entity currently. I suppose that the "Boolean" field that you mentioned is actually the "Two Options" type column, is it true?
If the "ExportDocaWW" field is a "Two Options" type column in your "DierEvent" Entity, I think there is something wrong with your Filter formula. I have made a test on my side, please consider take a try with the following workaround:
ClearCollect(
DRDierEvents;
Filter(
DierEvent;
ExportDocaWW = 'ExportDocaWW (DierEvent)'.Yes;
EventtypeId = 3;
EventDatum >= ExportDatumBegin.SelectedDate;
EventDatum < DateAdd(ExportDatumEind.SelectedDate; 1)
)
)
Note: I assume that you configure "Yes" & "No" option for the "ExportDocaWW" field in your CDS Entity.
More details about filter CDS Entity records based on "Two Option" type column, please check and see if the following blog would help in your scenario:
https://powerapps.microsoft.com/en-us/blog/option-sets-and-many-to-many-relationships-for-canvas-apps/
Best regards,