Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
12 | |
10 | |
9 | |
9 |
User | Count |
---|---|
17 | |
16 | |
13 | |
11 | |
11 |