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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello,
I need to create a calculation to show the Average Individual Members Active This Year. In the example below the avg. would be 72,807.
I've tried averaging Individual Members Active a few ways and I keep getting errors that the column cannot be used in the type of expression. I think it's because it's summing multiple individuals. I think I need a sum of indivduals members active this year and to use that somehow but I'm stuck on to what that calculation may be.
Here's the Individual Members Active Calculation -
fiscalmonthyear is part of the Date table.
Thanks,
Kristin
Solved! Go to Solution.
Hi,
I am not sure if I understood your question correctly, but please try the below measure.
Average measure: =
AVERAGEX (
VALUES ( 'calendartable'[fiscalmonthyear] ),
[Individual Members Active]
)
Hi,
I am not sure if I understood your question correctly, but please try the below measure.
Average measure: =
AVERAGEX (
VALUES ( 'calendartable'[fiscalmonthyear] ),
[Individual Members Active]
)
User | Count |
---|---|
8 | |
8 | |
5 | |
5 | |
3 |