Hi Marielle,
To apply less than or equal condition in filter widget directly, you can use Range slider widget instead of Combo box widget. In the Range slider widget bind your date column and then move the slider to apply your desired less than or equal condition filter.
Please refer below link for range slider control,
https://help.syncfusion.com/bold-bi/visualize-data/configure-widgets/range-slider
Thanks,
Varadharajan R
Hi Marielle,OK. Kindly get back to us if you need any further assistance. As always, we will happy to assist you.Thanks,Dhivya
Hi Marielle,Yes, its possible to add nested if condition in an expression. Please refer the below syntax.Syntax : IF( conditional expression, true part, IF(conditional expression, true part, false part))Expression : IF(YEAR([Ship Date])<Year(@{{:Parameter1}}) ,[Unit Price],IF(YEAR([Ship Date])=Year(@{{:Parameter1}}), [Unit Cost],0))But if you want to add another condition means, you can simply use AND condition instead of using Nested IF like as below. If both the condition are true then it returns true part or else it returns false part.IF(YEAR([Ship Date])<Year(@{{:Parameter1}}) AND YEAR([Ship Date])=Year(@{{:Parameter1}}) ,[Unit Price],0)Please let us know if you need any further assistance.Thanks,Dhivya