March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello Guys,
I need to run the excel FUNCTION AVERAGEIFS in Power BI.
I've tried AVAREGE, AVAREGEX, but i haven't had any success.
The data below the function is followed.
Measure =
AVERAGEIFS(
'Registros'[D],
'Registros'[Situação Fornecedor CA] <> "Não Contabilizar",
'Registros'[Último Movimento] = "Sim",
'Registros'[Cancelado] <> "Sim",
'Registros'[Categoria_Maior] <> "Solicitações de serviço",
'Registros'[Categoria_Maior <> Demandas Internas"
)
Tks
Big Hug's
Solved! Go to Solution.
In addition to vicky's solution, you may also try to write a measure like this:
Measure =
AVERAGEX(
FILTER(
'Registros',
'Registros'[Situação Fornecedor CA] <> "Não Contabilizar"
&&'Registros'[Último Movimento] = "Sim"
&&'Registros'[Cancelado] <> "Sim"
&&'Registros'[Categoria_Maior] <> "Solicitações de serviço"
&&'Registros'[Categoria_Maior <> Demandas Internas"
),
'Registros'[D]
)
Thank you very much, guys.
Big Hug
In addition to vicky's solution, you may also try to write a measure like this:
Measure =
AVERAGEX(
FILTER(
'Registros',
'Registros'[Situação Fornecedor CA] <> "Não Contabilizar"
&&'Registros'[Último Movimento] = "Sim"
&&'Registros'[Cancelado] <> "Sim"
&&'Registros'[Categoria_Maior] <> "Solicitações de serviço"
&&'Registros'[Categoria_Maior <> Demandas Internas"
),
'Registros'[D]
)
You will need to use the CALCULATE function with a filter on the Registros table. Try a something like:
Measure =
CALCULATE(
AVERAGE('Registros'[D]),
'Registros'[Situação Fornecedor CA] <> "Não Contabilizar",
'Registros'[Último Movimento] = "Sim",
'Registros'[Cancelado] <> "Sim",
'Registros'[Categoria_Maior] <> "Solicitações de serviço",
'Registros'[Categoria_Maior <> Demandas Internas"
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
19 | |
19 | |
16 | |
8 | |
5 |
User | Count |
---|---|
36 | |
28 | |
16 | |
16 | |
12 |