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
hola buen dia
agradeceria su ayuda con este caso:
estoy calculando una medida "Conf Inv Lote-Pond", multiplicando dos medidas antes echas (confiabilidad de lote * peso%) pero en el TOTAL de la medida aplica el mismo cálculo de la medida y lo que necesito que me muestre en el TOTAL: es la suma de cada dato obtenido por centro y almacen, dejo tabla para entender lo antes dicho, mil gracias si me ayudan.
en ves de dar 80,45% deberia dar 74% aproximadamente (Resultado en letra verde)
centro | almacen | confiabilidad de lote | peso% | Conf Inv Lote-Pond |
cd01 | DS01 | 100% | 0% | 0% |
cd01 | EX02 | 100% | 0,58% | 0,58% |
cd01 | MQ01 | 100% | 0,01% | 0,01% |
cd01 | PT02 | 73,71% | 98,98% | 72,96% |
Cd01 | RE01 | 100% | 0,42% | 0,42% |
Total | 80,46% | 99,9% | 80,45% |
muchas gracias
Solved! Go to Solution.
For your case, Just use this formula to create a new measure:
Measure= VAR _TABLE=SUMMARIZE( Table, Table[centro],Table[almacen], "_value",[Conf Inv Lote-Pond]) return
SUMX(_TABLE, [_Value])
or just adjust the Conf Inv Lote-Pond measure as below:
Conf Inv Lote-Pond= VAR _TABLE=SUMMARIZE( Table, Table[centro],Table[almacen], "_value",[confiabilidad de lote]*[peso%]) return
SUMX(_TABLE, [_Value])
Regards,
Lin
For your case, Just use this formula to create a new measure:
Measure= VAR _TABLE=SUMMARIZE( Table, Table[centro],Table[almacen], "_value",[Conf Inv Lote-Pond]) return
SUMX(_TABLE, [_Value])
or just adjust the Conf Inv Lote-Pond measure as below:
Conf Inv Lote-Pond= VAR _TABLE=SUMMARIZE( Table, Table[centro],Table[almacen], "_value",[confiabilidad de lote]*[peso%]) return
SUMX(_TABLE, [_Value])
Regards,
Lin
Asumiendo que la tabla de donde proceden las columnas de centro y almacen se llama "Tabla", prueba con esta medida:
Conf Inv Lota-pond con totales = SUMX(Tabla, [confiabilidad de lote] * [peso%])
A ver si es lomque necesitas
Proud to be a Super User!
Paul on Linkedin.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |