Hello,
I have a table with projects and hours. Each project has a corresponding proposal number.
How can I create a measure that adds all the hours for the corresponsing proposal and show them along side the project hours?
I tried
Solved! Go to Solution.
You can create a measure using DAX below:
SumProjectHours = CALCULATE(SUM('Table'[Hours]), ALLEXCEPT('Table', 'Table'[Project_Number], 'Table'[Proposal Number]))
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You can create a measure using DAX below:
SumProjectHours = CALCULATE(SUM('Table'[Hours]), ALLEXCEPT('Table', 'Table'[Project_Number], 'Table'[Proposal Number]))
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
User | Count |
---|---|
360 | |
105 | |
63 | |
51 | |
49 |
User | Count |
---|---|
335 | |
122 | |
83 | |
68 | |
62 |