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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Gentlemen, good afternoon.
I would like that in a table that appears every month, it was possible to create an average that would bring the result of a selected month for all the months in the table, I would like to send an example of how I would like it to be done and another one with a few attempts.
Solved! Go to Solution.
Hi @Anonymous ,
Basically the DS_MES_ABR column should comes from another table so that you can create a measure like this:
Select =
CALCULATE (
SUM ( dim_calendario[Realizado] ),
FILTER (
ALL ( dim_calendario ),
'dim_calendario'[DS_MES] = SELECTEDVALUE ( 'Table'[DS_MES] )
)
)
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Basically the DS_MES_ABR column should comes from another table so that you can create a measure like this:
Select =
CALCULATE (
SUM ( dim_calendario[Realizado] ),
FILTER (
ALL ( dim_calendario ),
'dim_calendario'[DS_MES] = SELECTEDVALUE ( 'Table'[DS_MES] )
)
)
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous Hi,
VAR Selected_Month = SELECTEDVALUE(dim_calendario[DS_MES_ABREVIADO])
RETURN Calculate([Validacao], dim_calendario[DS_MES_ABREVIADO] = Selected_Month)
Thanks,
Please mark this as soluntion if this helped you.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 20 | |
| 11 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 31 | |
| 29 | |
| 21 | |
| 12 | |
| 12 |