The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I have this created this table which is a Union of several other tables.
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?
Solved! Go to Solution.
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!
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!
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)
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
118 | |
87 | |
75 | |
53 | |
45 |
User | Count |
---|---|
135 | |
121 | |
77 | |
65 | |
64 |