In your main report, insert a group on type. Then create a formula {@min}:
minimum({table.value},{table.type})
Add the minimum of this formula to your crosstab as the first summary, using minimum of {table.value} as your second summary.
In preview mode select the {@min} summary->right click->format field->suppress->x+2 and enter:
whileprintingrecords;
numbervar minx := currentfieldvalue;
true;
Then select your second summary->right click->format field->suppress->x+2 and enter:
whileprintingrecords;
numbervar curr := currentfieldvalue;
false;
Then while this is still selected, go to the borders screen->color->background->x+2 and enter:
whileprintingrecords;
numbervar minx;
numbervar curr;
if curr = minx then
cryellow else
crnocolor
Resize the suppressed minimum summary to minimize its height.
-LB