Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
lakshnajha
New Member

visualization monthly - need help

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

 

 

2016-01-20.png

1 REPLY 1
greggyb
Resident Rockstar
Resident Rockstar

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" )

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors