May 8, 201213 yr Hello , i would like to know if i can set a field to show 0 or nothing if the value is a negative number? please let me know thank you Mauricio
May 8, 201213 yr Use the Auto Enter on the field Case ( Self > 0 ; Self; 0) and deselect the "Replace existing value"
May 8, 201213 yr BTW, to make it blank result, you can just change the second 0 to "" as I did in the script version. Go to Record/Request/Page [ First ] Loop Set Field [ yourField; Case ( yourField > 0 ; yourField; "" ) ] Go to Record/Request/Page [ Next; Exit after last ] End Loop
May 8, 201213 yr Are you really on FM9? If not, then you can use a conditional format on the field. value is less than 0 Make the font size 500 point in the formatting.
May 9, 201213 yr Are you really on FM9? If not, then you can use a conditional format on the field. FM9 had the conditional format option.
Create an account or sign in to comment