I am trying to color code certain rows depending upon the number of children the main document has. I am trying-
red := 255:0:0 : 1 : 1 : 1;
apricot := 255:155:133 : 1 : 1 : 1;
number := @DocChildren ;
@If(@TextToNumber(number) >=3;red;"");
I understand that @docChildren returns "special text" which cannot be converted to a number. Is there any other way to compare a value to the # of children in a view??
Thank you for your time.
red := 255:0:0 : 1 : 1 : 1;
apricot := 255:155:133 : 1 : 1 : 1;
number := @DocChildren ;
@If(@TextToNumber(number) >=3;red;"");
I understand that @docChildren returns "special text" which cannot be converted to a number. Is there any other way to compare a value to the # of children in a view??
Thank you for your time.