我使用下面的scope语句来粗体测量值。有没有办法让相应的行标签变粗?
Scope ([Reports].[Income Statement].Members);
// Bold Font for Report Items //
FONT_FLAGS(THIS) = IIF([Reports].[Income Statement].CurrentMember IS [Reports].[Income Statement].&[Total Sales],1,0);
FORMAT_STRING(THIS) = IIF([Reports].[Income Statement].CurrentMember IS [Reports].[Income Statement].&[Variable Margin],"#,##0.00 %;-#,##0.00 %","#,##0.00;(#,##0.00)");
End Scope;
这就是它在excel中的样子。只有测量值以粗体显示,我还需要粗体字的行标签“总销售额”。