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
Hi ,
I need to display Last 12 months data for a measure deoending on Year and Month selection.
I managed to write the measure, but when put in the Line chart, it gets filtered only for the selected month.
Any help is appreciated
Regards,
Priyanga
Solved! Go to Solution.
Hi @Anonymous ,
Did you have a dim_ date table? I suggest you create a date table and then you can use the following measure:
Last 12 months Sales =
VAR Start_date =
CALCULATE ( MAX ( Dim_Date[Date] ), ALLSELECTED ( Dim_Date ) )
RETURN
CALCULATE (
[Measure],
ALL ( Dim_Date ),
DATESINPERIOD ( Dim_Date[Date], [Start_date], -12, MONTH )
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Hi @Anonymous ,
Did you have a dim_ date table? I suggest you create a date table and then you can use the following measure:
Last 12 months Sales =
VAR Start_date =
CALCULATE ( MAX ( Dim_Date[Date] ), ALLSELECTED ( Dim_Date ) )
RETURN
CALCULATE (
[Measure],
ALL ( Dim_Date ),
DATESINPERIOD ( Dim_Date[Date], [Start_date], -12, MONTH )
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
hi, @Anonymous
If it is OK with you, please share your sample pbix file, or your measure. Then I can try to come up with a more accurate solution.
thank you.
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster.
Hi Jihwan,
I cannot attach sample pbix file due to security retrictions. But I have put down the measures
Calculated Column:
Regards,
Priyanga
Hi @Anonymous ,
Not clear much....can you please share your DAX code for the measure and if possible a sample file with sensitive data removed ?
Regards,
Jaideep
Hi Jaideep,
I cannot attach sample pbix file due to security retrictions. But I have put down the measures
Calculated Column:
Regards,
Priyanga
Proud to be a Super User!
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.
| User | Count |
|---|---|
| 47 | |
| 44 | |
| 39 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 70 | |
| 68 | |
| 32 | |
| 27 | |
| 25 |