Forum Discussion
Calculation With Filters
- 1 year ago
Hi Rich_Wyeth,
Thank you for reaching out to Microsoft Fabric Community.
Due to the many-to-many relationships and use of bridge tables like KITS JOIN, the slicer does not automatically filter KITS 2024. This is why you are seeing overall totals instead of values specific to the selected part.
Use this below measure, it will correctly respects the slicer selection and filters the kit quantities accordingly:
M_THECALC =
VAR SelectedParts = VALUES('Margin Report'[PN])
VAR DirectQty =
CALCULATE(
SUM('Margin Report'[QTY]),
KEEPFILTERS(SelectedParts)
)
VAR KitsQty =
CALCULATE(
SUM('KITS 2024'[Quantity]),
TREATAS(SelectedParts, 'KITS 2024'[Part Number])
)
RETURN
DirectQty + KitsQty
And also ensure 'KITS 2024'[Part Number] and 'Margin Report'[PN] have the same data type and check if all the relevant relationships in the model are active.
If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!
Thanks and regards,
Anjan Kumar Chippa
The scenario is a bit convaluted.
The Margin Table has one colunm [PN] that includes both Part Number and Kit Number. The Kits Tables have them separated between Kit and Part. There can be multiple parts to a kit and the part can appear in more than one kit. Each part number has a specific qty to being in the kit. I have managed to get a table to show me the results of total qty for parts in kits (From Kits) and Ihave a tabe for just parts sold separately (from Margin Report). I am trying to get the two totals to now caclulate up, when I have selected the part number from my slicer (coming from Margin Report). What currently happens is ut sums total quatities rather than specific to the part number selected.
Hi Rich_Wyeth,
Thank you for reaching out to Microsoft Fabric Community.
Due to the many-to-many relationships and use of bridge tables like KITS JOIN, the slicer does not automatically filter KITS 2024. This is why you are seeing overall totals instead of values specific to the selected part.
Use this below measure, it will correctly respects the slicer selection and filters the kit quantities accordingly:
M_THECALC =
VAR SelectedParts = VALUES('Margin Report'[PN])
VAR DirectQty =
CALCULATE(
SUM('Margin Report'[QTY]),
KEEPFILTERS(SelectedParts)
)
VAR KitsQty =
CALCULATE(
SUM('KITS 2024'[Quantity]),
TREATAS(SelectedParts, 'KITS 2024'[Part Number])
)
RETURN
DirectQty + KitsQty
And also ensure 'KITS 2024'[Part Number] and 'Margin Report'[PN] have the same data type and check if all the relevant relationships in the model are active.
If this post helps, then please consider Accepting as solution to help the other members find it more quickly, don't forget to give a "Kudos" – I’d truly appreciate it!
Thanks and regards,
Anjan Kumar Chippa
- v-achippa1 year agoCommunity Support
Hi Rich_Wyeth,
As we haven’t heard back from you, we wanted to kindly follow up to check if the solution I have provided for the issue worked? or let us know if you need any further assistance.
If my response addressed, please mark it as "Accept as solution" and click "Yes" if you found it helpful.Thanks and regards,
Anjan Kumar Chippa
- v-achippa1 year agoCommunity Support
Hi @Rich_Wyeth,
We wanted to kindly follow up to check if the solution I have provided for the issue worked.
If my response addressed, please mark it as "Accept as solution" and click "Yes" if you found it helpful.Thanks and regards,
Anjan Kumar Chippa
- v-achippa1 year agoCommunity Support
Hi @Rich_Wyeth,
As we haven’t heard back from you, we wanted to kindly follow up to check if the solution I have provided for the issue worked? or let us know if you need any further assistance.
If my response addressed, please mark it as "Accept as solution" and click "Yes" if you found it helpful.Thanks and regards,
Anjan Kumar Chippa