Reputation: 5349
I am working with existing crystal report and at the moment I am totally helpless to un-group two fields added in Text object.
Basically I want to add formula to one of the embedded field and I can not select that, below is the image i am attaching ,
Here you can see two fields are embedded in a Text control, I wanted to select the Top (Extra_Merch_Desc...) field, Kindly help in this regards.
Upvotes: 1
Views: 600
Reputation: 5349
I have done with different way.. No Hover and drop is there.Instead after adding formula, you Ctrl-X the desired field and double click the Text field then Paste in it.
Upvotes: 1
Reputation: 5349
I have followed these steps to modify the fonts:
Enter the following formula:
IF Len({Customer.Customer Name})>15 Then 8 else
IF Len({Customer.Customer Name}) in 10 to 15 Then 9 else 10
Press the Save and Close button
I have double clicked the Text box and found two options :
When I do modify the Formula and "Save & Close Option Press" , it saves and I can see Formula in the Formula box, but after exiting from Formatting Box next time that formula disappears.
Below is the formula for the font change:
if Length({myfield}) < 50
then 16
else if ((Length({myfield}) >= 50) AND (Length({myfield}) < 80 ))
then 13
else if ((Length({myfield}) >= 80) AND (Length({myfield}) < 100 ))
then 11
else
10
Upvotes: 1