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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

Create a Calculated Column Based on 2 tables

I have this created this table which is a Union of several other tables. PowerBI screenshot.JPG

 

I want to add a Cost per INQ (top row example for Blackhat = $112,139 / 444 INQs = $252.56 = Cost/Inq) as a column on the end of this table. What is the best way to do this?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

is both Cost and INQ columns are in the same source table ?

Option 1: you can create a Column in Power Query Editor

Option 2: create a measure as follows:

       Cost Per INQ = Cost - INQ

and drag it to this table Visual.

 

am not sure if am missing something but looks simple to me based on what you have provided below.

Thanks!

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

is both Cost and INQ columns are in the same source table ?

Option 1: you can create a Column in Power Query Editor

Option 2: create a measure as follows:

       Cost Per INQ = Cost - INQ

and drag it to this table Visual.

 

am not sure if am missing something but looks simple to me based on what you have provided below.

Thanks!

 

Anonymous
Not applicable

Without knowing how the data is set up, I'm not sure if this will solve your problem, but a measure built something like this should get the desired result:
Measure = 
DIVIDE (
    SUMX( table, table[cost]), SUMX( table2, table2[INQ]), 0)

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.

Top Solution Authors