Hi All,
In WinGrid summary i want to check 2 condition
If (Sum([col1]) > 100 or Sum([col1]) < 200 then Sum([col1]) *.5 else Sum([col1]) *2
Please tell me how to achive this formula.
Thanks
Amit
Hi Amit,
What part of this is giving you trouble? The formula you have here looks pretty good to me. You just have change it around a little because the 'if' function syntax is a bit different than in code.
if (Sum([col1]) > 100 or Sum([col1]) < 200, Sum([col1]) *.5, Sum([col1]) *2)