Forum Discussion
Quarter visual
I have a data set as show below.
I have a month dorpdown filter. When we select a month, i need the QTR for that month and the previous QTR in cards. and in another 2 card i need to show the total sales based on that.
For example if i select Apr-23 in the dropdown filter in one card i need to show Q2'23 and in another card it show show Q1'23. How can i creat a measure for this. For selected month QTR i am able to show. But previous QTR based on the selcted month i am not able to create.
I need help to create a measre for displaying the previous QTR based on the month selectd and in another card i need to show the total sales of the last month of previous QTR.
As per the example i need to get Q1'23 in one card and in another i need to see 339479 ( which is the last month of Q1'23).
Please help me on this.
pls try this
Current Qtr = SELECTEDVALUE('Table'[Qtr]) ----- Last QTR = VAR _selectQRT = SELECTEDVALUE('Table'[Order Qtr])-1 VAR _lastMonth = MAXX(FILTER(ALL('Table'),'Table'[Order Qtr]=_selectQRT),[Qtr]) RETURN _lastMonth
4 Replies
- AhmedxSuper User
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
https://1drv.ms/u/s!AiUZ0Ws7G26RiF8BOplXRoeii7tI?e=mdsni5
- AhmedxSuper User
pls try this
Current Qtr = SELECTEDVALUE('Table'[Qtr]) ----- Last QTR = VAR _selectQRT = SELECTEDVALUE('Table'[Order Qtr])-1 VAR _lastMonth = MAXX(FILTER(ALL('Table'),'Table'[Order Qtr]=_selectQRT),[Qtr]) RETURN _lastMonth