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.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
213 | |
75 | |
67 | |
55 | |
52 |
User | Count |
---|---|
253 | |
233 | |
103 | |
87 | |
69 |