Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi @Savita_Mishra ,
I am bit unclear with exact output, if the expected output is below then you can follow provided steps:
Create a Table with below DAX expression:
CalendarData = CALENDAR(DATE(2021,1,1),DATE(2025,1,1))
Create a column “Quarter” with below DAX expression,
Quarter =
var result = SWITCH(CalendarData[Date].[QuarterNo],1,"Qtr 4",2,"Qtr 1",3,"Qtr 2",4,"Qtr 3")
return result
Create a Column “Month of Fiscal” with below DAX expression,
Month of Fiscal =
var NMonth = CalendarData[Date].[MonthNo]
var monthNo = IF(NMonth>=4 && NMonth <=12, NMonth-3,NMonth+9)
return SWITCH(monthNo,1,"April",2,"May",3,"June",4,"July",5,"August",6,"September",7,"October",8,"November",9,"December",10,"January",11,"February",12,"March")
Now use Matrix to display these columns as shown in below screenshot,
Let me know if your requirement is different from this.
Thanks!
Inogic Professional Services Division
Power Platform and Microsoft Dynamics 365 CRM Development – All under one roof!
Drop an email at crm@inogic.com
Services: http://www.inogic.com/services/
Power Platform/Dynamics 365 CRM Tips and Tricks: http://www.inogic.com/blog/
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |