This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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/
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |