Forum Discussion
Anonymous
5 years agoNot applicable
Month Measure
Hi Guys, I have a doubt regarding one of my column. I have a column "Booked Date" in my report and i have no. of deals against the booked date. Can i break the booked date into months? ...
- 5 years ago
Hi Anonymous ,
If you are using Direct Query mode, you can create a column like this to define month name:
Month = VAR _m = MONTH ( 'Date_ID'[BookedDate] ) RETURN SWITCH ( TRUE (), _m = 1, "Jan", _m = 2, "Feb", _m = 3, "Mar", _m = 4, "Apr", _m = 5, "May", _m = 6, "Jun", _m = 7, "Jul", _m = 8, "Aug", _m = 9, "Sep", _m = 10, "Oct", _m = 11, "Nov", _m = 12, "Dec" )Put this column and [ID] column in the table visual, change the aggreation of [ID] as 'SUM' and rename for this visual:
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
5 years agoSuper User
Anonymous , with default date hierarchy
https://5minutebi.com/2017/11/29/how-to-use-powerbi-date-hierarchy/
Create month year in the table or date table
Month Year = FORMAT([Date],"mmm-yyyy")
Month Year sort = FORMAT([Date],"yyyymm")
Sort Month Year on Month Year sort