Displaying a field based on a value

More
9 years 9 months ago #9179 by hanisultan
In Crystal reports/SQl Report, you can choose to display the content of a field (text or ole or image) or suppress the filed based on some condition for example, if the account starts with 1 display the icon if not, suppress it. Not sure if you support this or not and perhaps might be hard to implement too but I think would add an additional power to your reporting functionality. Let me know if you have questions. Thank you

Please Log in or Create an account to join the conversation.

More
9 years 9 months ago #9183 by admin
This should be possible, I will ask developers to create an example

Mike

Mike
ETL Architect

Please Log in or Create an account to join the conversation.

More
9 years 9 months ago #9195 by admin
You can use event before print for that:

Here is the example


procedure Memo3OnBeforePrint(Sender: TfrxComponent);
begin
Memo3.visible:=false;
end;

John

Mike
ETL Architect

Please Log in or Create an account to join the conversation.

More
9 years 9 months ago #9209 by hanisultan
Thank you John, I will give it a try and report back to you

Please Log in or Create an account to join the conversation.