Is there any documentation on the syntax for comparisons in UltraGridColumn.Formula? I am trying to tally a row depending on row values and the following formulas:
if([StatusColumn]=0, 0, [ActiveQuantityColumn]) if([StatusColumn]='Ignore', 0, [ActiveQuantityColumn]) if([StatusColumn]="Ignore", 0, [ActiveQuantityColumn])
always give the value in [ActiveQuantityColumn], I need to ignore them if [StatusColumn] shows "Ignore". [StatusColumn] is an Int32 with display value looked up from an UltraDropDown; the statusID of ignored rows is 0.
Hi,
May I suggest you to use "UltraCalcManager",, because there are some logical functions. Also, please look at the attached example. In the example the last column is logical (wiht IF condition). Please look at this example and if you have any questions do not hesitate to ask me.
Regards