Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
126 | |
113 | |
73 | |
65 | |
46 |