Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content
Announcements
See why Qlik was named a Leader in the 2025 Gartner® Magic Quadrant™ for Augmented Data Quality Solutions: GET THE REPORT
cancel
Showing results for 
Search instead for 
Did you mean: 
mariam_vd
Contributor II
Contributor II

Multiple time dimensions in one Bar chart

Hello, I have a requirement to create a BarChart, which will show the weekly values and their aggregations for Months and Years simultaneously. 

See the mockup done in Excel below.

mariam_vd_1-1718798863964.png

I've created the alternative dimensions, but that solution is not sufficient. 

Do you happen to know the best practices for such a graph? 

 

 

Labels (3)
1 Reply
anat
Master
Master

we should have all Year,Month and Week values in single filed

Table1:

load Date,Month as NewDate resident table;

concatenate(Table1)load Date,Year as NewDate resident table;

concatenate(Table1)load Date,Week as NewDate resident table;

Date should be the join with fact table then use Newdate as dim .

but this is not the best approach