Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello, I have a Project Report that I am having to manually manipulate in order to roll up the dollar values because of multiple START & FINISH dates within a Project Release.
Based on the examples below (*includes Current State & Desired State), I would like to introduce logic/condtion that can accomplish the Desired State in the attachment. In order to get to the desired state I need to introduce Date MIN/MAX, however I need the Date MIN/MAX to use the following logic:
MIN/MAX Start/Finish Dates by unique Department & associated unique release.
The goal is to roll up the dollar values at unique Department & unique Release and display the MIN Start Date & MAX Finish Date. Please let me know if any clarification is needed.
Thanks
Byron
Solved! Go to Solution.
Hi @bmdailey,
Based on your description, I assume your resource sample data is the same. Because your sample table is shown in screenshot, I can't copy, so I typed some part of it for reference. sample table
Then click "New Table" under Modeling on home page. Type the following formula and you will get the table below.
NewTable = SUMMARIZE ( Test, Test[Department], Test[Release], "Budget", SUM ( Test[Budget] ), "Actual", SUM ( Test[Actual] ), "Variance", SUM ( Test[Variance] ), "Start Date", MIN ( Test[Start Date] ), "Finish Date", MAX ( Test[Finish Date] ) )
Finally, you can create a table visual, select all the columns to display as follows.
Best Regards,
Angelia
If I understand your challenge correctly this is actually super simple to achieve. Import your current state data. Make sure the data types come out correctly. Create a table visual and drop all your columns in the Values in desired order. Then use the drop-down menu for each of the columns in the Values bucket (see pic below) of the visual to choose the appropriate aggregation for Budget, Actual, Variance, and the dates (MAX/MIN).
Erik, thanks for the suggestion. I believe I've tried this method and had an issue with repetitive lines (*opposed to the value roll up by Department, Release). It's been some time ago so I will give it a shot and let you what I find out.
Thanks again for the suggestion....results to follow
Byron
Hi @bmdailey,
Based on your description, I assume your resource sample data is the same. Because your sample table is shown in screenshot, I can't copy, so I typed some part of it for reference. sample table
Then click "New Table" under Modeling on home page. Type the following formula and you will get the table below.
NewTable = SUMMARIZE ( Test, Test[Department], Test[Release], "Budget", SUM ( Test[Budget] ), "Actual", SUM ( Test[Actual] ), "Variance", SUM ( Test[Variance] ), "Start Date", MIN ( Test[Start Date] ), "Finish Date", MAX ( Test[Finish Date] ) )
Finally, you can create a table visual, select all the columns to display as follows.
Best Regards,
Angelia
Sure thing. BTW that's what the aggregration is for, to avoid repetitive lines and instead get a sum, an average, a min or max etc. Good luck, let us know how it goes.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
76 | |
73 | |
42 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |