Powerbi 如何强制在power bi可视卡上签名?

Powerbi 如何强制在power bi可视卡上签名?,powerbi,Powerbi,我正在寻找一种解决方案,在卡片上显示带符号的百分比数字。 例如,如果我有10%的groxth,我希望在卡片中看到:+10% 谢谢。一定有比我更好的解决方案,但这是可行的: Measure = FORMAT( [Pct_measure]; IF( [Pct_measure] >= 0; "+0.0%"; "0.0%" // the negative sign will be carried automatically

我正在寻找一种解决方案,在卡片上显示带符号的百分比数字。 例如,如果我有10%的groxth,我希望在卡片中看到:+10%


谢谢。

一定有比我更好的解决方案,但这是可行的:

Measure = 
FORMAT(
    [Pct_measure];
    IF(
        [Pct_measure] >= 0;
         "+0.0%";
         "0.0%" // the negative sign will be carried automatically 
    )
)
注意:这将[Pct_measure]的值作为文本返回