- Posts: 725
- Thank you received: 15
Displaying a field based on a value
- hanisultan
-
Topic Author
- Offline
- Platinum Member
-
Less
More
9 years 9 months ago #9179
by hanisultan
Displaying a field based on a value was created 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.
9 years 9 months ago #9183
by admin
Mike
ETL Architect
Replied by admin on topic Displaying a field based on a value
This should be possible, I will ask developers to create an example
Mike
Mike
Mike
ETL Architect
Please Log in or Create an account to join the conversation.
9 years 9 months ago #9195
by admin
Mike
ETL Architect
Replied by admin on topic Displaying a field based on a value
You can use event before print for that:
Here is the example
procedure Memo3OnBeforePrint(Sender: TfrxComponent);
begin
Memo3.visible:=false;
end;
John
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.
- hanisultan
-
Topic Author
- Offline
- Platinum Member
-
Less
More
- Posts: 725
- Thank you received: 15
9 years 9 months ago #9209
by hanisultan
Replied by hanisultan on topic Displaying a field based on a value
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.