Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello everyone, I'm having a problem viewing my measurement on the card, which compares the current day to the previous day in percentages. I can see it normally on the graph and I can't see it on the card.
1: % preço = CALCULATE([Preço de venda](DATEADD(Calendario[Data].[Date], -1, DAY)))
Solved! Go to Solution.
Hi @lucasvaranda ,
I create a table as you mentioned.
Then I create a measure and here is the DAX code.
SalePriceDifference =
VAR _CurrentRowDate =
MAX ( 'Table'[Date] )
VAR _PreviousRowDate =
CALCULATE (
MAX ( 'Table'[Date] ),
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] < _CurrentRowDate )
)
RETURN
IF (
_PreviousRowDate <> BLANK (),
SUM ( 'Table'[Sale price] )
- CALCULATE (
SUM ( 'Table'[Sale price] ),
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] = _PreviousRowDate )
)
)
In Power BI Desktop, the card can only show one value, it doesn't show the values all together like a bar chart. It only show you the Total.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @lucasvaranda ,
I create a table as you mentioned.
Then I create a measure and here is the DAX code.
SalePriceDifference =
VAR _CurrentRowDate =
MAX ( 'Table'[Date] )
VAR _PreviousRowDate =
CALCULATE (
MAX ( 'Table'[Date] ),
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] < _CurrentRowDate )
)
RETURN
IF (
_PreviousRowDate <> BLANK (),
SUM ( 'Table'[Sale price] )
- CALCULATE (
SUM ( 'Table'[Sale price] ),
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] = _PreviousRowDate )
)
)
In Power BI Desktop, the card can only show one value, it doesn't show the values all together like a bar chart. It only show you the Total.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@lucasvaranda See my article on Mean Time Between Failure (MTBF) which uses EARLIER: http://community.powerbi.com/t5/Community-Blog/Mean-Time-Between-Failure-MTBF-and-Power-BI/ba-p/3395....
The basic pattern is:
Column =
VAR __Current = [Value]
VAR __PreviousDate = MAXX(FILTER('Table','Table'[Date] < EARLIER('Table'[Date])),[Date])
VAR __Previous = MAXX(FILTER('Table',[Date]=__PreviousDate),[Value])
RETURN
( __Current - __Previous ) * 1.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
11 |
User | Count |
---|---|
19 | |
14 | |
14 | |
11 | |
9 |