The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello All,
First Time poster and new user to Power BI. I have a question regarding an example of data below. Those three columns are just three in a table of about ten, but those are only the ones I need to reference in this example.
Week | Trip | Miles |
21 | 1245 | 54 |
21 | 1245 | 72 |
21 | 1789 | 54 |
22 | 1279 | 45 |
22 | 1122 | 87 |
What I am trying to do is create a measure that will Group the 'Week," while counting the "Trip" by distinct and will sum up the "Miles" at which time I want to dive the "Miles" by the Trip Count for a Miles per trip calculation.
Let me know please and thank you in advance for your help.
Solved! Go to Solution.
@Anonymous
I created this measure, please try:
Measure =
SUMX(
SUMMARIZE( TABLE, TABLE[Week] , "SUM", DIVIDE( SUM(TABLE[Miles]),DISTINCTCOUNT(TABLE[Trip]))),
[SUM]
)
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@Anonymous
I created this measure, please try:
Measure =
SUMX(
SUMMARIZE( TABLE, TABLE[Week] , "SUM", DIVIDE( SUM(TABLE[Miles]),DISTINCTCOUNT(TABLE[Trip]))),
[SUM]
)
________________________
If my answer was helpful, please consider Accept it as the solution to help the other members find it
Click on the Thumbs-Up icon if you like this reply 🙂
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
User | Count |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
25 | |
13 | |
12 | |
8 | |
8 |