Inline bold
- 
					
					
					
 Hi, I have a problem with inline bold text, when I export to excel. Can oyu give me advice how can I bold some text inline? <worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" 
 xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
 <cols>
 <col min="1" max="1" width="80" customWidth="1" />
 <col min="2" max="2" width="8" customWidth="2" />
 <col min="3" max="3" width="13" customWidth="3" />
 <col min="4" max="4" width="10" customWidth="4" />
 <col min="5" max="5" width="12" customWidth="5" />
 </cols>
 <sheetData>
 {{for people}}
 <row ss:Bold="1">
 <c t="inlineStr">
 {{if number == "411"}}
 <is>
 // bold this
 <t>{{:test}}}</t>
 </is>
 {{else}}
 <is>
 <t>{{:test}}</t>
 </is>
 {{/if}}
 </c>
 </row>
 {{/for}}
 </sheetData>
 </worksheet>
 
- 
					
					
					
 hi @marmijic , you can take a look here http://officeopenxml.com/SSstyles.php for a general overview for how to apply styles when using the excel format (Open XML) 
 
 
			
		