March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
14 | |
11 | |
8 | |
5 |
User | Count |
---|---|
26 | |
21 | |
20 | |
14 | |
10 |