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! Get ahead of the game and start preparing now! Learn more
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ó:
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!