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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I wrote a measure where I want to retrieve the value of the previous month without taking the group into account. However, everything I test takes the group into account. Does someone have an idea ?
My values :
Date | Group | Value |
202401 | A | 10 |
202402 | A | 10 |
202403 | A | 10 |
202404 | B | 15 |
202405 | B | 15 |
202406 | B | 15 |
202407 | B | 20 |
202408 | B | 20 |
My measure :
My results :
Date | Group | Value | Previous Month |
202401 | A | 10 | |
202402 | A | 10 | 10 |
202403 | A | 10 | 10 |
202404 | A | 10 | |
202404 | B | 15 | |
202405 | B | 15 | 15 |
202406 | B | 15 | 15 |
202407 | B | 20 | 15 |
202408 | B | 20 | 20 |
What i looking for ..
Date | Group | Value | Previous Month |
202401 | A | 10 | |
202402 | A | 10 | 10 |
202403 | A | 10 | 10 |
202404 | B | 15 | 10 |
202405 | B | 15 | 15 |
202406 | B | 15 | 15 |
202407 | B | 20 | 15 |
202408 | B | 20 | 20 |
Thanks for your help !
Guillaume
Solved! Go to Solution.
If you will use this in only one visual you can leverage from visual calculations and use the PREVIOUS() function from it.
Proud to be a Super User!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.