crystaldev1
Programmer
Hello. I'm using CR 9 and Sql Server 2005.
I have this formula:
if (instr(TotalItem,Item) > 0) then ""
else TotalItem := TotalItem + Item;
I would like to add increment formula to the else condition as below:
if (instr(TotalItem,Item) > 0) then ""
else TotalItem := TotalItem + Item and X:=X+1;
Please let me know if there's a workaround for this. Thanks.
I have this formula:
if (instr(TotalItem,Item) > 0) then ""
else TotalItem := TotalItem + Item;
I would like to add increment formula to the else condition as below:
if (instr(TotalItem,Item) > 0) then ""
else TotalItem := TotalItem + Item and X:=X+1;
Please let me know if there's a workaround for this. Thanks.