Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Good afternoon community,
I would like to consult you how I could make a measurement in which it allows me to know the value of last year of the current month, also have a parameter of months which when selecting a value "n" decreases me in "n" months of the current month in the previous year.
Example:
next reference image
thank you very much in advance
Hi @Syndicate_Admin ,
Here are the steps you can follow:
1. Modeling - New parameter - Create a 0-12 table as a slicer.
2. Create measure.
Measure =
var _select=SELECTEDVALUE('periodo'[periodo])
var _today=TODAY()
var _maxdate=MAXX(ALL('Table'),[Date])
return
IF(
YEAR(MAX('Table'[Date]))=YEAR(TODAY())&&
MAX('Table'[Date])<=DATE(YEAR(TODAY()),MONTH(_maxdate)-_select,1)
,
CALCULATE(SUM('Table'[valor]),FILTER(ALL('Table'),
'Table'[Date]=DATE(YEAR(MAX('Table'[Date]))-1,
MONTH(MAX('Table'[Date]))+_select,1)))
,BLANK())3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
coloque datos 0 sin relevancia porque solo mostraba hasta el mes 04/2022
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 58 | |
| 53 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 116 | |
| 105 | |
| 41 | |
| 34 | |
| 25 |