Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request 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:
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 71 | |
| 50 | |
| 46 | |
| 44 |