We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Year T otal Sales Difference in Sales from Last Year (should be result)
2014 0
2015 2.5 2.5
2016 4.5 2
2017 9 4.5
2018 0 -9
2019 2 2
How do you write dax for it?
Solved! Go to Solution.
Hi @jiglow3501,
Please create the calculated column with the formula below.
Column =
VAR temp =
CALCULATE (
MAX ( 'table'[Total Sales] ),
FILTER ( 'table', 'table'[Year] = EARLIER ( 'table'[Year] ) - 1 )
)
RETURN
IF ( 'Table'[Total sales] - temp = 0, BLANK (), 'Table'[Total sales] - temp )
Then you will get the output below.
Best Regards,
Cherry
Hi @jiglow3501,
Please create the calculated column with the formula below.
Column =
VAR temp =
CALCULATE (
MAX ( 'table'[Total Sales] ),
FILTER ( 'table', 'table'[Year] = EARLIER ( 'table'[Year] ) - 1 )
)
RETURN
IF ( 'Table'[Total sales] - temp = 0, BLANK (), 'Table'[Total sales] - temp )
Then you will get the output below.
Best Regards,
Cherry
Hi @v-piga-msft
I am working with a table with daily quantities.
What would be the formula for a calculated column with the daily difference of the quantities?
e.g.
Date Qty Diff
6/1/2020 1
6/2/2020 2 1
Thank you!
Daniel
If 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 |
|---|---|
| 53 | |
| 38 | |
| 33 | |
| 17 | |
| 17 |
| User | Count |
|---|---|
| 67 | |
| 63 | |
| 38 | |
| 34 | |
| 22 |