Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
hi
i have data by date and need to summarize monthly to show on bar chart
i had seen before an option where i could select on my createdat filed as monthly but now i dont see it
pls help
You can create a month field in your date dimension, and should do so anyway:
// Power Query MonthNumber = Date.Month( [Date] ) MonthName = Date.ToText( [Date], "MMMM" ) MonthNameShort = Date.ToText( [Date], "MMM" ) // DAX MonthNumber = MONTH( DimDate[Date] ) MonthName = FORMAT( DimDate[Date], "MMMM" ) MonthNameShort = FORMAT( DimDate[Date], "MMM" )
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.