Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
I need to create a measure that DIVIDES the SUM of select rows in column A by the SUM of select rows in column B.
Amount of Overhead Cost + Amount of PTO = TOTAL COST
The TOTAL COST will be used in a measure to calculate percentage of cost to Revenue
My data is in SQL Database and is structured like this:
Date Office Column A Column B Amount
Jan-20 1234 Revenue Revenue 300
Jan-20 1234 Overhead Cost Office 25
Jan-20 1234 Direct Expense Mileage 100
Jan-20 5678 Revenue Revenue 300
Feb-20 5678 Overhead Cost PTO 25
Feb-20 5678 Direct Expense Labor 100
I can provide a sample excel file with data shema and values via one drive. The message will not post if I format the above data into a table.
Solved! Go to Solution.
Try new measures like
cost = calculate(sum(table[Amount]),table[Column A] in{"Overhead Cost","PTO"})
revenue = calculate(sum(table[Amount]),table[Column A] ="Revenue")
Ratio =divide([cost],[revenue])
Try new measures like
cost = calculate(sum(table[Amount]),table[Column A] in{"Overhead Cost","PTO"})
revenue = calculate(sum(table[Amount]),table[Column A] ="Revenue")
Ratio =divide([cost],[revenue])
Thank you for your quick response. This is very close, but the cost formula doesn't account for the "PTO" value being located in a different column,
cost = calculate(sum(table[Amount]),table[Column A] in{"Overhead Cost","PTO"})
sum table amount Column A + sum table amount Column B
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.
| User | Count |
|---|---|
| 47 | |
| 43 | |
| 40 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 70 | |
| 67 | |
| 32 | |
| 27 | |
| 25 |