Reputation:
i'm having problem in hiding a text object in crystal report using ..... I want to visible a text object name "lblDup" when count(it is a integer field in table "IdMaker_DB") is greater than 1 else lblDup should be invisible....
if({IdMaker_DB.Count}>1)then //what should i write here
i have tried my best but couldn't got success...... I'm using visual studio 10, crystal report,C#
Upvotes: 0
Views: 1962
Reputation: 7287
You don't need the if-then-else construction here. The suppression formula for the text object should just be {IdMaker_DB.Count}>1
Upvotes: 1