Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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!