The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi all,
I'm having trouble getting an averagex function to work correctly, my data has one row per person, I need a function that checks a flag column then choses which column to sum as appropriate.
At the moment it seems to be evaluating for more than one person at a time as I'm getting an error about multiple values. Code is below, can anyone sugest a solution?
=AVERAGEX ( VALUES ( table[Person_ID] ), IF ( values(table[flag]) = 1, sum( table[Col1] ), sum(table[Col2]) ) )
Than you
MyAverageX = AVERAGEX(table,IF(table[flag]=1,table[Col1],table[Col2]))
As a measure.