Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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 November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.