Hi All
@VijayP have share with me Advanced Card , This Vis is must better then PBI Card Visulisation.
Because it can display more information in one card.
When i try to use the below expression for display % Vari :-
Above is PBI file :-
Solved! Go to Solution.
Select your measure in the Fields panel and then click on the % sign to format it as percent in the ribbon. Also, you should write that measure using a variable to keep it from calculating twice each time.
_Vari_%_REV =
VAR vResult =
DIVIDE (
[_YTD REV] - [_LYTD REV],
[_LYTD REV]
)
RETURN
IF (
ISBLANK ( vResult ),
1,
vResult
)
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Select your measure in the Fields panel and then click on the % sign to format it as percent in the ribbon. Also, you should write that measure using a variable to keep it from calculating twice each time.
_Vari_%_REV =
VAR vResult =
DIVIDE (
[_YTD REV] - [_LYTD REV],
[_LYTD REV]
)
RETURN
IF (
ISBLANK ( vResult ),
1,
vResult
)
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
@mahoneypat Thank you very for sharing the right approach in writing expression. it is more structure.
Paul
User | Count |
---|---|
136 | |
87 | |
66 | |
60 | |
55 |
User | Count |
---|---|
213 | |
108 | |
86 | |
82 | |
76 |