Ampersand in label caption in Excel 2007 Ribbon

  • Thread starter Thread starter SJ
  • Start date Start date
S

SJ

Instead of the caption being "A and B" as below, I need it to display as "A
& B"

<button id="btn1" label="A and B" imageMso="Help"
onAction="aa.xls!btnAction" />
 
try
<button id="btn1" label="A & B" imageMso="Help" onAction="aa.xls!btnAction" />
 
Hi,

Try,

<button id="btn1" label="A &amp;&amp; B" imageMso="Help"
onAction="aa.xls!btnAction" />

Cheers
Andy
 
Back
Top