Forum Discussion
ITManuel
4 years agoResponsive Resident
Column granularity in matrix
Hi, I have a matrix with a Year/Months Hierarchy on the columns. Is there any possiblity to show the current year 2021 with current Year/Months hierarchy and any following years starti...
- 4 years ago
ITManuel , You need to create a new column like
if([Date] >date(year(today()),12,31) , "All", [Month] )
This will group all month into one group
- 4 years ago
Option 1: You can manually hide the month columns by dragging the right column boundary (you need to turn off word wrap in the formatting options) for each of the redundant months
Option 2: create a custom matrix layout:
amitchandak
4 years agoSuper User
ITManuel , You need to create a new column like
if([Date] >date(year(today()),12,31) , "All", [Month] )
This will group all month into one group