Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
helioandrade
New Member

Sumarize what-if measure

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])

 

 

 

3 REPLIES 3
v-jingzhang
Community Support
Community Support

Hi @helioandrade 

 

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.

amitchandak
Super User
Super User

@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])

)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

tks for helping,
but this not work

helioandrade_1-1638786481779.png

i'm try this:

Tabela2 = SUMMARIZE(base,FAIXA[FAIXA PRECO],TD_SEGMENTO_MERCADO[SEGMENTO DE MERCADO],TD_CATEGORIA[CATEGORIA],"volume", [VOLUME 2020 COM % CRESC])

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.