Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I have a measure that calculates a revenue group based on a LTM measure of revenue. I am trying to create a chart that shows the % change of these groups over time. I can't move the measure into the column field in a matrix. It does not work. I created a calculated column, which I could drag to the column, but it is not dynamic. It shows the same # of employees regardless of what month it is.
I was able to create a chart in a pivot table easily using this method, but it doesn't work for PBI.
@sublog sorry it is not clear how your data looks like and what are the measures? Can you share more details? Read this post to get your answer quickly.
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Here's my measure
TTM Rev Group Bucket Dlvry = SWITCH(TRUE(), AND([TTM MA Dlvrd Rev]>=0,[TTM MA Dlvrd Rev]=0), BLANK(), AND([TTM MA Dlvrd Rev]>=0,[TTM MA Dlvrd Rev]<=750000), "$0K - $750K", AND([TTM MA Dlvrd Rev]>=0,[TTM MA Dlvrd Rev]<=1500000), "$750K- $1.5M", AND([TTM MA Dlvrd Rev]>=0,[TTM MA Dlvrd Rev]>1500000), ">$1.5M")
TTM MA Dlvrd Rev = CALCULATE ( [Total Revenue], DATESBETWEEN ( 'Calendar'[Date], NEXTDAY ( SAMEPERIODLASTYEAR ( LASTDATE ( 'Calendar'[Date] ) ) ), LASTDATE ( 'Calendar'[Date] ) ) )Have a farily complicated model with 13 tables.