Forum Discussion
kkoc3karan
2 years agoFrequent Visitor
Bi monthly Date table
Hi Guys Has anyone ever create date table with Bi monthly view ? For eg Jan-Feb March-April etc and have these by fiscal view and calender view along with sort column ? What wil...
ryan_mayu
Super User
2 years agoif you want to display the data in different years, you can add the year in the column
sort = if(ISODD(MONTH('Table'[Date])),year('Table'[Date])&month('Table'[Date]),year('Table'[Date])&month(EDATE('Table'[Date],-1)))
kkoc3karan
2 years agoFrequent Visitor
This is what i did to get what i wanted
Bi monthly Sort FY =
Var _result = if(dimDate[Fiscal MonthNumber]+1 =1 , 1 ,QUOTIENT(dimDate[Fiscal MonthNumber]+1,2))
return
_result
Bi monthly Sort CAL =
Var _result = if(dimDate[Calendar MonthNumber]+1 =1 , 1 ,QUOTIENT(dimDate[Calendar MonthNumber]+1,2))
return
_result
- ryan_mayu2 years ago
Super User
usually we should have different solutions. if this works, then you can use it.
- kkoc3karan2 years agoFrequent Visitor
Do u know if there is a norm / best practise for Bi monthly time scale ?
I dont want to use things which are not best practise / norm