Forum Discussion
How to divide data from two colums coming from different data sources
- 9 years ago
Hi,
Refer the below file with boxes per hour column.
https://www.dropbox.com/s/0qg1x6n67vmmj3x/August%20Harvest.pbix?dl=0
I think you should soend some time to learn DAX, so some of the usefull youtuube channels where you can learn it.
https://www.youtube.com/channel/UCy2rBgj4M1tzK-urTZ28zcA
Hi maximus1,
In addition to dilumd's solution, you should also be able to simply use the formula below to create a measure to calculate Boxes per Hour in this scenario. :smileyhappy:
Measure = DIVIDE(SUM('August Production'[Boxes]),SUM('August Payroll'[Hours]))
Regards
v-ljerr-msft
Thank you for your help! I appreciate the alternative solution. If you know of any resources that would be helpful in learnig DAX please let me know. I am new to power bi, but really want to learn.
Thank you again!
- v-ljerr-msft9 years agoMicrosoft Employee
Hi maximus1,
Based on my experience, it's better to start learning DAX from a book, as there are some key concepts needs to be understand first(i.e. the difference between row context and filter context). :smileyhappy:
Regards
- maximus19 years agoFrequent Visitor
Thank you!