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
NEcesito utilizar los totales para una medida, estoy utilizando el calculate, pero cuando llevo a la matriz, me lo genera por el elemento que lo engloba, alguien sabe como puedo tomar siempre los totales? o subtotales?
Solved! Go to Solution.
Hi @maniac234 ,
Based on the description, try using the following dax formula to get total.
Measure = SUMX(ALL('Table'), 'Table'[Unit])
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @maniac234 ,
Based on the description, try using the following dax formula to get total.
Measure = SUMX(ALL('Table'), 'Table'[Unit])
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Lo que yo necesito son los totales, para poder realizar otros calculos, te mando el print que en esos numeros que aparecen abajo de antiparacitarios, aparezca lo que esta arriba que es antiparacitarios
Hi @maniac234 ,
I am not very sure about your expectations, but if you are trying to get the subtotal values replicate in each granularity, you can use below syntax. else please share some sample data and an illustration of the desired output.
value = calculate(sum(table,[value]),allexcept(table,table[subgroup column]))
Hello @maniac234,
Can you please try this approach:
DynamicTotalsAndSubtotals =
IF(
ISINSCOPE(DimProduct[Product]),
SUM(FactSales[Sales]),
IF(
ISINSCOPE(DimRegion[Region]),
CALCULATE(SUM(FactSales[Sales]), REMOVEFILTERS(DimProduct)),
CALCULATE(SUM(FactSales[Sales]), ALL(DimRegion, DimProduct))
)
)
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 |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
18 | |
16 | |
13 |