diff --git a/src/app/components/shared/statistics-page/statistics-page.component.ts b/src/app/components/shared/statistics-page/statistics-page.component.ts
index 4211c2de96c7575b77be9be48ec64a86f6467b30..ae3b5bc181d4cfa1e1d01588c7eb7d13f3f5010d 100644
--- a/src/app/components/shared/statistics-page/statistics-page.component.ts
+++ b/src/app/components/shared/statistics-page/statistics-page.component.ts
@@ -1,10 +1,11 @@
-import { Component, OnInit } from '@angular/core';
+import { Component, OnInit, ViewChild } from '@angular/core';
 import { ActivatedRoute } from '@angular/router';
 import { RoomService } from '../../../services/http/room.service';
 import { ContentGroup } from '../../../models/content-group';
 import { Room } from '../../../models/room';
 import { TranslateService } from '@ngx-translate/core';
 import { LanguageService } from '../../../services/util/language.service';
+import { MatTabGroup } from '@angular/material';
 
 @Component({
   selector: 'app-statistics',
@@ -17,6 +18,9 @@ export class StatisticsPageComponent implements OnInit {
   room: Room;
   contentGroups: ContentGroup[];
   isLoading = true;
+  currentCG: string;
+
+  @ViewChild(MatTabGroup) tabGroup: MatTabGroup;
 
   constructor(
     private route: ActivatedRoute,
@@ -27,7 +31,9 @@ export class StatisticsPageComponent implements OnInit {
   }
 
   ngOnInit(): void {
+    this.currentCG = sessionStorage.getItem('contentGroup');
     this.getRoom(localStorage.getItem('roomId'));
+    this.tabGroup.selectedIndex = 1;
   }
 
   getRoom(id: string): void {
@@ -35,6 +41,11 @@ export class StatisticsPageComponent implements OnInit {
     this.roomService.getRoom(id).subscribe(room => {
       this.contentGroups = room.contentGroups;
       this.isLoading = false;
+      for (let i = 0; i < this.contentGroups.length; i++) {
+        if (this.currentCG.includes(this.contentGroups[i].name)) {
+          this.tabGroup.selectedIndex = i;
+        }
+      }
     });
   }