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
VishalSahoo_7
New Member

NEED help with questions

Hello, I am new to Power BIquestionsquestionsQuestion DescriptionQuestion Description, learning about it currently, Can anybody please help me with these questions I shall be grateful for it.

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Hi @VishalSahoo_7 ,

 

According to your description, you can try below five formula to create calculated table:

Blank 1: CostDifferenceMatrix = 
SUMMARIZE(
    'QuotesTable',
    'QuotesTable'[Quote ID],
    'QuotesTable'[Gold Number],
    'QuotesTable'[Pre Sales Term],
    'QuotesTable'[Pre Sales Carrier],
    'QuotesTable'[Pre Sales Cost],
    'QuotesTable'[Post Sales Carrier],
    'QuotesTable'[Post Sales Cost],
    "Cost Difference", 'QuotesTable'[Post Sales Cost] - 'QuotesTable'[Pre Sales Cost]
)

vkongfanfmsft_0-1720076644943.png

Blank 2: AvgPreSalesCostMatrix = 
SUMMARIZE(
    'QuotesTable',
    'QuotesTable'[Quote ID],
    'QuotesTable'[Gold Number],
    "Average Pre-Sales Cost", AVERAGE('QuotesTable'[Pre Sales Cost])
)

vkongfanfmsft_1-1720076661930.png

Blank 3: DateMatrix = 
ADDCOLUMNS(
    'QuotesTable',
    "Date", TODAY()
)

vkongfanfmsft_2-1720076679968.png

Blank 4: ExpectedRevenueMatrix = 
SUMMARIZE(
    'QuotesTable',
    'QuotesTable'[Quote ID],
    'QuotesTable'[Gold Number],
    "Expected Revenue", MAX(QuotesTable[Post Sales Cost])* 1.1 
)

vkongfanfmsft_3-1720076695986.png

vkongfanfmsft_4-1720076716124.png

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

Anonymous
Not applicable

Hi @VishalSahoo_7 ,

 

Sorry, I missed the formula for blank5.

Blank 5: CleanGoldNumberMatrix = 
FILTER(
    'QuotesTable',
    NOT(ISBLANK('QuotesTable'[Gold Number]))
)

vkongfanfmsft_0-1720081011036.png

 

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @VishalSahoo_7 ,

 

According to your description, you can try below five formula to create calculated table:

Blank 1: CostDifferenceMatrix = 
SUMMARIZE(
    'QuotesTable',
    'QuotesTable'[Quote ID],
    'QuotesTable'[Gold Number],
    'QuotesTable'[Pre Sales Term],
    'QuotesTable'[Pre Sales Carrier],
    'QuotesTable'[Pre Sales Cost],
    'QuotesTable'[Post Sales Carrier],
    'QuotesTable'[Post Sales Cost],
    "Cost Difference", 'QuotesTable'[Post Sales Cost] - 'QuotesTable'[Pre Sales Cost]
)

vkongfanfmsft_0-1720076644943.png

Blank 2: AvgPreSalesCostMatrix = 
SUMMARIZE(
    'QuotesTable',
    'QuotesTable'[Quote ID],
    'QuotesTable'[Gold Number],
    "Average Pre-Sales Cost", AVERAGE('QuotesTable'[Pre Sales Cost])
)

vkongfanfmsft_1-1720076661930.png

Blank 3: DateMatrix = 
ADDCOLUMNS(
    'QuotesTable',
    "Date", TODAY()
)

vkongfanfmsft_2-1720076679968.png

Blank 4: ExpectedRevenueMatrix = 
SUMMARIZE(
    'QuotesTable',
    'QuotesTable'[Quote ID],
    'QuotesTable'[Gold Number],
    "Expected Revenue", MAX(QuotesTable[Post Sales Cost])* 1.1 
)

vkongfanfmsft_3-1720076695986.png

vkongfanfmsft_4-1720076716124.png

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Hey @Anonymous  Thank you so much really appreciate your help and efforts !! Can you please tell me the 5th blank answer?

Anonymous
Not applicable

Hi @VishalSahoo_7 ,

 

Sorry, I missed the formula for blank5.

Blank 5: CleanGoldNumberMatrix = 
FILTER(
    'QuotesTable',
    NOT(ISBLANK('QuotesTable'[Gold Number]))
)

vkongfanfmsft_0-1720081011036.png

 

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.