Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Estos son los datos:
let
Source = #table({"Status"},List.Zip({{"ON","OFF","UNKNOWN","ON","ON","OFF"}})),
#"Added Index" = Table.AddIndexColumn(Source, "Index", 0, 1, Int64.Type)
in
#"Added Index"Necesito una medida que devuelva el número de apariciones del valor que aparece con más frecuencia en la columna "Estado". Entonces, en este ejemplo, "ON" aparece más y ocurre 3 veces.
Tengo una medida que identificó correctamente el valor que aparece con más frecuencia:
Measure 2 = CALCULATE(COUNT(Query1[Status]), FILTER(Query1, Query1[Status] = [most repeated status]))
Pero ninguna de las anteriores es correcta.
Lo descubrió:
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.