The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hola, estoy luchando con un problema que necesito resolver y no puedo encontrar la mejor solución.
Agradecería ayuda u otras sugerencias para solucionar el problema.
Tengo esta mesa y me interesa hacer una medida con el READING ComfortReading = AVERAGE(ConfortReadings[LECTURA])
Lo que necesitaría es agregar al resultado de la medición, según sea Temperatura, Humedad o CO2, el texto al final del resultado, si filtro en el display por Temperatura, agregar ºC al resultado, si es Humedad % y si es CO2 ppm
La idea es que con la misma medida valga para los distintos tipos de Metros pero que le agregue el texto correspondiente, adjunto como debe ser el resultado
Supongo que tendré que cambiar el tamaño pero no encuentro la solución. Estaría infinitamente agradecido por su ayuda. Mis mejores deseos.
Solved! Go to Solution.
Hi @sunnypb,
You can't direct do aggregation on these text values.
I'd like to suggest you write a measure formula for different category types and set custom formatting strings to change the display value and symbol, they should not effet you to use aggregate features.
Use custom format strings in Power BI Desktop - Power BI | Microsoft Docs
Regards,
Xiaoxin Sheng
Hi @sunnypb ,
you can try making this calculated column
Result column =
FIXED(LECTURA,0) &
SWITCH(
CONTADOR,
"Temperatura","ºC",
"Humedad","%",
"CO2","ppm"
)
Regards,
Aditya
THANK YOU VERY MUCH FOR THE PROMPT RESPONSE, EFFECTIVELY IT CREATED A CALCULATED COLUMN WITH THE NUMBER AND THE TEXT, MY QUESTION WOULD BE, CAN I MAKE AN AVERAGE WITH THAT CALCULATED COLUMN? BEING A STRING TYPE, IT DOESN'T LET ME, I DON'T KNOW IF YOU CAN MAKE A NUMERICAL TYPE.... thank you
Hi @sunnypb,
You can't direct do aggregation on these text values.
I'd like to suggest you write a measure formula for different category types and set custom formatting strings to change the display value and symbol, they should not effet you to use aggregate features.
Use custom format strings in Power BI Desktop - Power BI | Microsoft Docs
Regards,
Xiaoxin Sheng
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
21 | |
20 | |
17 | |
15 | |
13 |
User | Count |
---|---|
42 | |
36 | |
23 | |
22 | |
17 |