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
I know there are other ways of doing this, but I want to know if there is a way to do the following:
I want to reference Measure 1 in Measure 2
Measure 1 is OK and working
Measure 1: vMax_Year_PY = Max('SALES'[Year])-1
Note: Year is a separate field in the Sales table
I want to treat vMax_Year_PY almost as a “global variable” in different measure functions…
Measure 2: CALCULATE(SUM('Sales'[Sales]),'Sales'[Year] = vMax_Year_PY )
Is there any syntax to make this type of function work??
Try this one
Measure 2 =
VAR MyYear = [vMax_Year_PY]
RETURN
CALCULATE (
SUM ( 'Sales'[Sales] ),
FILTER ( ALLSELECTED ( Sales[YEAR] ), 'Sales'[Year] = MyYear )
)
Hi Zubair
I am getting part of the correct answer with the following if I select a specific Year:
Sales PY =
VAR MyYear = [vMax_Year_PY]
RETURN CALCULATE ( SUM ( TRANS[Sales] ), FILTER ( ALL ( TRANS[YEAR] ), TRANS[YEAR] = MyYear ) )
However, it does not give me all the Sales for the Previous Year (all products), if in the there were no sales for specific products in the selected year.
Please see the image and Sandbox App in the link: https://drive.google.com/drive/folders/1ZPtPMgDm1CID4AnezDGsu49ve1vY0EtP?usp=sharing
https://drive.google.com/drive/folders/1ZPtPMgDm1CID4AnezDGsu49ve1vY0EtP?usp=sharing
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.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 47 | |
| 44 | |
| 40 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 70 | |
| 68 | |
| 32 | |
| 27 | |
| 25 |