Filtering of BindingSource

G

Guest

I have a DataTable with four columns of type Float (r1, r2, r3, and r4)
connected through a BindingSource to a DataGridView. I need to filter the
displayed rows as"

ABS(r1-r2)>c1 OR ABS(r3-r4) > c1

where ABS is an absolute value.

Is there a simple way to accomplish this while retaining the ability to edit
the data in the displayed rows?

Best regards;
 
C

ClayB

Try this expression for the BindingSource.Filter property.

bindingSource1.Filter = string.Format("(IIF(r1>r2,r1-r2,r2-r1)>
{0}) OR (IIF(r3>r4,r3-r4,r4-r3)> {0})", c1);

====================
Clay Burch
Syncfusion, Inc.
 
C

ClayB

The above assume c1 is some paramater value. If c1 is a column in your
datatable, then try

bindingSource1.Filter = "(IIF(r1>r2,r1-r2,r2-r1)>c1) OR (IIF(r3>r4,r3-
r4,r4-r3)>c1)";

=============
Clay Burch
Syncfusion, Inc.
 
L

Linda Liu [MSFT]

Hi Arlyn,

I aggree to what Clay has suggested. In fact, I have performed a test on
Clay's solution and confirmed it works.

While we set the Filter property of a BindingSource component, we could
still edit the data in the displayed rows. The two things don't conflict.

Hope this helps.
If you have any question, please feel free to let me know.

Sincerely,
Linda Liu
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top