Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe'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
Hello guys,
I'm beginner in DAX and Pbi.
I have a table fact with 2 dates and an amount fileds, like this :
date_insert date_order amount
21/12/2017 01/08/2017 5
13/12/2017 01/07/2017 4
01/08/2016 01/08/2015 6
01/08/2013 01/08/2010 2
There is a relation-ship with date dimension on date_insert field. I want to sum all transactions where year date order is the same that max filtered value from date dimension in a mesaure and all transactions where the year date order isn't the same that max filtered value from date dimension in another measure.
For example:
What approach can I take?
Thanks for your help
Solved! Go to Solution.
Read this over a couple times, still not certain I know what you want, but probably something like:
Measure =
VAR __year = MAX('Date'[Year])
RETURN SUMX(FILTER(ALL('Table'),YEAR([date_order])=__year),[amount])
Measure 2 =
VAR __year = MAX('Date'[Year])
VAR __maxAllYear = MAXX(ALL('Date'),[Year])
VAR __minAllYear = MINX(ALL('Date'),[Year])
RETURN SUMX(FILTER(ALL('Table'),YEAR([date_order])>=__minAllYear&&YEAR([date_order])<=__maxAllYear&&YEAR([date_order])<>__year),[amount])
Read this over a couple times, still not certain I know what you want, but probably something like:
Measure =
VAR __year = MAX('Date'[Year])
RETURN SUMX(FILTER(ALL('Table'),YEAR([date_order])=__year),[amount])
Measure 2 =
VAR __year = MAX('Date'[Year])
VAR __maxAllYear = MAXX(ALL('Date'),[Year])
VAR __minAllYear = MINX(ALL('Date'),[Year])
RETURN SUMX(FILTER(ALL('Table'),YEAR([date_order])>=__minAllYear&&YEAR([date_order])<=__maxAllYear&&YEAR([date_order])<>__year),[amount])
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 |
|---|---|
| 55 | |
| 35 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 38 | |
| 35 | |
| 25 |