Darryl:
Well, I can't say that there's NO XML tag to accomplish bolding -- because XML is so openended that
there are ways you could write your own XML application and your own XSL transform that you could accomplish that kind of bolding.
On the other hand, IF you are asking whether there's a way with the ExcelXP XML tagset to accomplish bolding on a conditional level, then the answer is...it depends. There is absolutely a way to change the tagset to recognize cell values and then turn on bolding (assuming you know how Microsoft does the bolding).
But, making that change at the tagset level is not required if you could use PROC REPORT. Consider the following code:
[pre]
ods html file='rep_hilite.html' style=sasweb;
proc report data=sashelp.shoes nowd
style(lines)=Header
style(summary)={font_weight=bold};
title 'Highlight the Whole Row if';
title2 'some condition is met';
where region in ('Asia', 'Canada');
column region product sales;
define region / group;
define product / group;
define sales / sum;
break after region / summarize;
compute sales;
if sales.sum ge 300000 and sales.sum le 1000000 then
call define(_ROW_,'STYLE',
'style={background=pink font_weight=bold}');
else if sales.sum le 75000 then
call define(_ROW_,'STYLE',
'style={background=yellow font_weight=bold}');
endcomp;
run;
ods html close;
[/pre]
...which produces pink and yellow bolded rows based on the value of the sales variable.
cynthia
ps...did HTML for simplicity.