Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
How would I calculate this simple calculation in a filtered table?
Solved! Go to Solution.
Thanks. I figured out that all I really needed to do was use ALL(filtered_column[field])
This pattern will do a % of total.
Percent of Total =
VAR varCurrentAmount =
SUM( Table[Column] )
VAR varTotal =
SUMX(
ALL( Table ),
Table[Column]
)
VAR Result =
DIVIDE(
varCurrentAmount,
varTotal,
0
)
RETURN
Result
If you need more help, provide data in the format provided by the links below and maybe a screenshot or description of expected results.
How to get good help fast. Help us help you.
How to Get Your Question Answered Quickly
How to provide sample data in the Power BI Forum
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingThanks. I figured out that all I really needed to do was use ALL(filtered_column[field])
@Anonymous wrote:
Thanks. I figured out that all I really needed to do was use ALL(filtered_column[field])
You are welcome @Anonymous
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI Reporting