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
Hi,
I'm trying to get a specific total value, but I'm not sure how can I achieve it.
So I've got two variables "Densidade" and "FX Quimicos". The way my deviation formula works, I can get the total for one or the other, depending on which is being filtered on the slicer. The thing is I want the total also when both are being selected, but the total needs to be the sum of the individual values of each variable. Example below: File: https://we.tl/t-i40oiGDkRJ
My total for "Densidade" deviation is -1,11%:
My total for "FX Quimicos" deviation is -0,11%:
My total value of both variables should be -1,11% + (- 0,10%) = -1,21%
I have not been able to get that total of the both variables. Tried summarize but still not working.
Could you please help me in this?
Thank you
Best regards,
André
Solved! Go to Solution.
Create Individual Deviation Measures:
Create a New Measure for Total:
Total Deviation = [Densidade Deviation] + [FX Quimicos Deviation]
Display Total Deviation in Visuals:
Handle Slicer Interaction:
Here's an example of how you might adjust your measure to handle slicer interactions:
Total Deviation =
CALCULATE(
[Densidade Deviation] + [FX Quimicos Deviation],
ALL('YourTableName'[YourSlicerField])
)
Replace 'YourTableName' and 'YourSlicerField' with the appropriate table and field names.
Remember that DAX measures should reflect the logic you want in your visualizations. Adjust the calculations based on your specific data model and requirements.
If you encounter specific issues or have more details to provide, feel free to share the relevant parts of your DAX code or describe the issue, and I'll do my best to assist you.
Hi @afbraga66 ,
Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or Accept the helpful suggestions to help others who faced similar requirements.
If these also don't help, please share more detailed information and description to help us clarify your scenario to test.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
Hey, not sure why is this happening but my post was marked as spam.
Here is the original link: https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Custom-total-value-for-measure/m-p/3...
If someone could help I would appreciate.
Thank you.
Best regards,
André
Create Individual Deviation Measures:
Create a New Measure for Total:
Total Deviation = [Densidade Deviation] + [FX Quimicos Deviation]
Display Total Deviation in Visuals:
Handle Slicer Interaction:
Here's an example of how you might adjust your measure to handle slicer interactions:
Total Deviation =
CALCULATE(
[Densidade Deviation] + [FX Quimicos Deviation],
ALL('YourTableName'[YourSlicerField])
)
Replace 'YourTableName' and 'YourSlicerField' with the appropriate table and field names.
Remember that DAX measures should reflect the logic you want in your visualizations. Adjust the calculations based on your specific data model and requirements.
If you encounter specific issues or have more details to provide, feel free to share the relevant parts of your DAX code or describe the issue, and I'll do my best to assist you.
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 | |
19 | |
18 | |
18 | |
14 |
User | Count |
---|---|
36 | |
35 | |
20 | |
20 | |
17 |