var fDesc=new Array(); fDesc[0] = "KB2965271 fixes the following issue: When you author Data Analysis Expressions (DAX) expressions in a Power Pivot add-in, syntax help requires using a comma as a separator to work correctly. In case the list separator in the regional settings of the computer is set to a semicolon and you use semicolons in the DAX expression, the expression will compile, but syntax help will not work."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }