Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
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
Hi all, another little question please. There is the following data below. Need to add all the "ETC" by Month and Name and then divide by "Avail".
So for example, for Sam in Jan, the result should be (10+30+20)/160. Thanks very much!
Solved! Go to Solution.
Here is one way to get your desired result with a measure (if your visual includes person and month columns) or a DAX calculated column.
Result =
VAR sumest =
CALCULATE (
SUM ( Avail[Est] ),
ALLEXCEPT ( Avail, Avail[Month], Avail[Person] )
)
VAR sumavail =
CALCULATE (
SUM ( Avail[Avail] ),
ALLEXCEPT ( Avail, Avail[Month], Avail[Person] )
)
RETURN
sumest / sumavail
If this works for you, please mark it as solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Here is one way to get your desired result with a measure (if your visual includes person and month columns) or a DAX calculated column.
Result =
VAR sumest =
CALCULATE (
SUM ( Avail[Est] ),
ALLEXCEPT ( Avail, Avail[Month], Avail[Person] )
)
VAR sumavail =
CALCULATE (
SUM ( Avail[Avail] ),
ALLEXCEPT ( Avail, Avail[Month], Avail[Person] )
)
RETURN
sumest / sumavail
If this works for you, please mark it as solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Thanks! That worked!
Hi @Anonymous
Do you want this in DAX or the query editor. You seem to be showing the query editor interface but this would be easier/more natural in DAX. It can also be done in M though. Can you paste the data here in text-tabular format (instead of screen capture) so that it can be copied and used in a test?
Please mark the question solved when done and consider giving kudos if posts are helpful.
Contact me privately for support with any larger-scale BI needs
Cheers
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 6 | |
| 3 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 21 | |
| 14 | |
| 11 | |
| 6 | |
| 5 |