Round box in the corner and Script
-
- Posts: 19
- Joined: Tue Oct 10, 2017 12:44 pm
Round box in the corner and Script
Hi guys____1.- Some one know how to round the corners of the boxes ?____2.- I want to put some properties as bold and fonts on one fields but it dependt over another field. For Ex. If the field x =1 the field a must to be bold.____Regards and Thanks__Osvaldo Ramirez__
=> Round box in the corner and Script
You cannot round the corners of boxes.____To get conditional field formatting, you need to create two mutually exclusive fields and then format one as bold. Then put the bold one on top of the non-bold counterpart.____So I could have:__IIF(DEPTSALES>500,DEPTSALES,BLANKNUM()) format this one as bold__and__IIF(DEPTSALES<=500,DEPTSALES,BLANKNUM())format this one as normal____Place second field directly on top of first field.____Any DEPTSALES value greater than 500 will print as bold. All others will be normal.____Kathleen__R&R Support