Forum Discussion
Aggregating calculated data
Anonymous- I recommend you read this article on the difference between calculated columns and measures. What you are trying to do is not difficult, but I think you are missing some of the underlying concepts in how DAX works. Calculated Columns and Measures are very different in how they handle row and filter context, which are two of the hardest concepts to get your head around as a beginner. It took me a few months before I really grasped what those were doing, and it is key to just about everything you do if you are building your own formulas - be it in a table as a calculated column, or as a measure.
And unfortunately I don't have the October build of Power BI desktop to save it as an old format. I am surprised the Oct build cannot open a November file.
Do you have a personal PC you can install PBI desktop on to see how it works?
edhans wrote:Anonymous- I recommend you read this article on the difference between calculated columns and measures. What you are trying to do is not difficult, but I think you are missing some of the underlying concepts in how DAX works. Calculated Columns and Measures are very different in how they handle row and filter context, which are two of the hardest concepts to get your head around as a beginner. It took me a few months before I really grasped what those were doing, and it is key to just about everything you do if you are building your own formulas - be it in a table as a calculated column, or as a measure.
And unfortunately I don't have the October build of Power BI desktop to save it as an old format. I am surprised the Oct build cannot open a November file.
Do you have a personal PC you can install PBI desktop on to see how it works?
edhans, I agree what I am trying to do should be simple but I may be complicating get the help I need by not sharing enough detail or not having enough knowledge to explain imy situation properly. I will take a look at the article you share but I'd also like to try to share more detail to see if this becomes obvious what I need to do.
First, I took your suggestion and installed the latest version of Power BI on my personal laptop. I was then able to view your file. I think the important distinction is that you created tables with the data I shared but in my case, these are visuals I created and some of the data does not exist in tables but are generated for the visual. For example, my Done data is generated by trhis formula:
Done = CALCULATE(COUNT(Issues[Key]),History[History New Value]="Done")
The Key field in the Issues table is unique and there are over 1,400 entires in my data. The History New Value field in the History table has multiple rows for each Key and there are several possible entries in the History New Value field for each key. The Month field is displayed from a full date and time field called Updated that I set in the Values section to just show the month.
Although I have data spanning multiple years, in my visual, for the Done column, I am able to filter the display to only count the 2018 entries in the Updated field. Unfortunately, this does not seem to limit the count in the Cumulative Done field. With an earlier version of a formula I used (following), it seems to be counting all the entries across all the years:
Cumulative Done =
SUMX (
FILTER ( Issues, Issues[Month #] <= EARLIER ( Issues[Month #] ) ),
Issues[Monthly Done]
)
There does not seem to be a way to set this column to just show the 2018 cumulative counts in the filters, but I am hoping there is a minor tweak to this formula that will allow me to do it.
Hopefuly, these additional details clarifiy my issue and gives enough info to help me solve it. What do you think? Am I close, or do I need to go a whole different route?
- v-cherch-msft7 years agoMicrosoft Employee
Hi Anonymous
Could you share your file so that we could help further on it? You can upload it to OneDrive or Dropbox and post the link here. Do mask sensitive data before uploading.
Regards,
Cherie
- Anonymous7 years agoNot applicable
Cherie, I have uploaded my data. The CFD page is where I am working on this dashboard. The Datekey table is a new one I created trying to get this to work. The other two tables are from our projects database, plus some columns and measures I have created.
Thank you for all your help with this.
-Greg
- v-cherch-msft7 years agoMicrosoft Employee
Hi Anonymous
I cannot access the file. You can upload the .pbix file to OneDrive or Dropbox and post the link here. Do mask sensitive data before uploading.
Regards,
Cherie
- v-cherch-msft7 years agoMicrosoft Employee
Hi Anonymous
You may create two measures as below:
Monthly Done2 = CALCULATE ( COUNT ( Issues[Key] ), History[History New Value] = "Done", YEAR ( Issues[Updated] ) = 2018, Issues[Issue Status] = "1.Done" ) + 0Cumulative Done2 = SUMX ( FILTER ( ALL ( Issues ), Issues[Month #] <= MAX ( Issues[Month #] ) ), [Monthly Done2] )Regards,
Cherie
- Anonymous7 years agoNot applicable
v-cherch-msft wrote:Hi Anonymous
You may create two measures as below:
Monthly Done2 = CALCULATE ( COUNT ( Issues[Key] ), History[History New Value] = "Done", YEAR ( Issues[Updated] ) = 2018, Issues[Issue Status] = "1.Done" ) + 0Cumulative Done2 = SUMX ( FILTER ( ALL ( Issues ), Issues[Month #] <= MAX ( Issues[Month #] ) ), [Monthly Done2] )Regards,
Cherie
Cherie, this is awesome! Thank you so much. This gives me just what I need for 2018. And it also includes the months where there were no changes, which I need. I imagine it is just a quick edit to change the Monthly Done measure to change it to 2019.
May I ask for one more suggestion? I will be sharing these reports on a published dashboard and I would like to give people the ability to set the date range so the cumulative count could start at any month, and run to any future month. Is it possible to do this with a slide bar like I used in other dashboards (which you can see in the file I shared with you)?
-Greg