Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hey guys! so i have a problem, lets think about if i have this table:
| Date | Amount |
10/10/2019 | 100 |
| 11/10/2019 | 120 |
| 12/10/2019 | 130 |
So i need to get the difference between 12/10/2019 and 10/10/2019
130-100 = 30
120-100 = 20
From the beginning to the others day! im actually got this table using filters dates! Date has the filter so i can show me the report of that day!
Solved! Go to Solution.
Hi @panchinxd ,
You need to add a measure similar to this:
Value =
SUM ( 'Table'[Amount] )
- CALCULATE (
SUM ( 'Table'[Amount] );
FILTER (
ALLSELECTED ( 'Table'[Date] );
'Table'[Date]
= CALCULATE ( MIN ( 'Table'[Date] ); ALLSELECTED ( 'Table'[Date] ) )
)
)
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @panchinxd ,
You need to add a measure similar to this:
Value =
SUM ( 'Table'[Amount] )
- CALCULATE (
SUM ( 'Table'[Amount] );
FILTER (
ALLSELECTED ( 'Table'[Date] );
'Table'[Date]
= CALCULATE ( MIN ( 'Table'[Date] ); ALLSELECTED ( 'Table'[Date] ) )
)
)
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsIf you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 44 | |
| 43 | |
| 38 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 67 | |
| 63 | |
| 30 | |
| 30 | |
| 23 |