I’m trying to get 3 computed fields to show in a view on different lines. I have the above field as cateorgized. I want to drop and show these 3 lines.
I’m starting with this…
I assume @NewLine goes in here, but not sure I’m doing this the best way. Thanks…
Tmp1 := @If(field1 = “Yes”; Dispxxx; “”);
Tmp2 := @If(field2 = “Yes”; Dispxxx; “”);
Tmp3 := @If(field3 = “Yes”; Dispxxx; “”);
@Trim(Tmp1 : Tmp2 : Tmp3)
Subject: multiple computed values to show in view
The entries do show on different lines. The problem now is that the entry shows twice.
Then entry shows twice but the first value is different.
So it’s partyly working, just not show right under each other???
Subject: RE: multiple computed values to show in view
Disregard previous post. I seem to have it working. Thanks!
Subject: multiple computed values to show in view
Try this way:
If the view column has multiple values of 3 as “Tmp1” : “Tmp2” : “Tmp3”,
Go to view properties into the third Tab(Style).
Check the “Rows” property “Shrink rows to content” and make “Height” property to any number which you think suitable to your entries. The maximum number you can select is 9.
In the column properties, In the first Tab (Col Info), Change the “Multi Value Separator” to “Newline” instead of the default value(none).
These settings make the entries display, one after the other in a document to the size of the entries.
Hope this will help you to achieve what you are looking for, without coding anything unusual.