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.
hello,
i'm need summarized this sample
table_whatif.values_1
dim_table_1.column_a
dim_table_2.columns_b
dim_table_3.columns_c
fact_table_4.columns_d
measure1(fact_table_4[columns_d] * table_whatif[values_1]
it's possible?
summarize(
dim_table_1.column_a,
dim_table_2.columns_b,
dim_table_3.columns_c,
measure1(fact_table_4[columns_d] * table_whatif[values_1])
Can you provide some sample data (dummy data) and expected result to help us understand your requirement better, as well as the measures used in [VOLUME 2020 COM % CRESC]?
Maybe you can try SUMMARIZECOLUMNS function (DAX). It doesn't need a base table.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
@helioandrade , You can have like
summarize(fact_table_4, //table join with all dim
dim_table_1.column_a,
dim_table_2.columns_b,
dim_table_3.columns_c,
"_Measure", sum(fact_table_4[columns_d]) * Sum(table_whatif[values_1])
)
tks for helping,
but this not work
i'm try this: