Forum Discussion
KPI Visual Goal - Based off previous month's data
That's helpful if the data is entered aggregated by row, looks like in this example the data has one line per month. But my data is entered in one row per user per month. I'm looking for a KPI based on the count of users for the month, and want to compare that to the count of users for the past month. All the data is there, but it's not aggregated on a per month basis when I load it in, I feel like Power BI should be able to handle this and allow for aggregating within the report creation. I need to have the individual data by row so I can add slicers to allow for the user to filter it based on differnt product categories, so aggregating it before uploading it won't make sense for my use case.
Did you get any further on this issue?
I am just looking into a simillar data set and would like to try and utilise the data in a KPI; the closest I got was, as you described an new column/measure. That is the current and previous month calculation using the previousmonth function and summing the columns, then divide them and convert to percentage.
Regards,
- Rachel9 years agoFrequent Visitor
I did figure out how to do this eventually. You do need to create a new measure, that aggregates the data, and then I used the SAMEPERIODLASTYEAR function, nested in the DATESMTD or DATESYTD function, for Year over Year comparisons.
Hope that makes sense, and helps! It works quite nicely this way, and allows for filtering on different segments.
- DanielClark9 years ago
Helper II
Ah okay, that is not quite what I was looking for as I need to compare with the previous month (I have been trying to use the PREVIOUSMONTH fucntion), but the DATESMTD and DATESYTD are both functions that I had not used before and they look like they will be very useful for shorter/longer comparisons. I'll give them a go!
Thanks for the reply!- Rachel9 years agoFrequent Visitor
I found this formula sales_last_month = calculate(sum('Table'[Sales]), PARALLELPERIOD('Table'[Date],-1,MONTH)) here https://community.powerbi.com/t5/Desktop/Compare-previous-and-new-sales/td-p/9872
I haven't tried it yet, but that might work for what you're trying to do.