Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
Hi,
I have a database like this:
a | b | c | d | e |
sara | 1 | 2 | 6 | 7 |
chiara | 5 | 6 | 7 | 6 |
ambra | 8 | 3 | 2 | 3 |
I have this measure:
Solved! Go to Solution.
Try
My measure =
IF (
ISINSCOPE ( 'Foglio1'[a] ),
SUMX ( 'Foglio1', 'Foglio1'[b] + 'Foglio1'[c] + 'Foglio1'[d] + 'Foglio1'[e] ),
AVERAGEX (
'Foglio1',
'Foglio1'[b] + 'Foglio1'[c] + 'Foglio1'[d] + 'Foglio1'[e]
)
)
Try
My measure =
IF (
ISINSCOPE ( 'Foglio1'[a] ),
SUMX ( 'Foglio1', 'Foglio1'[b] + 'Foglio1'[c] + 'Foglio1'[d] + 'Foglio1'[e] ),
AVERAGEX (
'Foglio1',
'Foglio1'[b] + 'Foglio1'[c] + 'Foglio1'[d] + 'Foglio1'[e]
)
)
thanks!
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
78 | |
76 | |
70 | |
49 | |
42 |
User | Count |
---|---|
62 | |
40 | |
32 | |
30 | |
29 |