Как сместить часовой пояс в визуализации Google Ads в Google Data Studio? - PullRequest
0 голосов
/ 19 июня 2019

Позвольте мне объяснить.

Моя учетная запись Google Ads находится в часовом поясе XY, в ней работают несколько часовых поясов.

Я пытался сделать смещение часов с помощью этого описания случая,но когда я помещаю вычисленную метрику в измерение времени, на графике появляется сообщение «Ошибка конфигурации пользователя».

Есть ли способ легко сместить часы в Google Data Studio с помощью вычисляемых полей?Я нашел только проблемы на пути.В настоящее время я использую что-то вроде этого, но оно не работает с фильтрами и измерением даты, а также, если смещение до дня или дня после его действительно сложного.

Сначала я приведу переменную Hour в качестве Numberв переменных часов дня как число ... но это не работает так, как я ожидал в фильтрах и все.

Может кто-то помочь?

case
when hours of the day as number = 09 then 0
when hours of the day as number = 10 then 1
when hours of the day as number = 11 then 2
when hours of the day as number = 12 then 3
when hours of the day as number = 13 then 4
when hours of the day as number = 14 then 5
when hours of the day as number = 15 then 6
when hours of the day as number = 16 then 7
when hours of the day as number = 17 then 8
when hours of the day as number = 18 then 9
when hours of the day as number = 19 then 10
when hours of the day as number = 20 then 11
when hours of the day as number = 21 then 12
when hours of the day as number = 22 then 13
when hours of the day as number = 23 then 14
when hours of the day as number = 00 then 15
when hours of the day as number = 01 then 16
when hours of the day as number = 02 then 17
when hours of the day as number = 03 then 18
when hours of the day as number = 04 then 19
when hours of the day as number = 05 then 20
when hours of the day as number = 06 then 21
when hours of the day as number = 07 then 22
when hours of the day as number = 08 then 23
else 0
END

Я ожидаю компенсировать все набор данныхуметь визуализировать разные часовые пояса.

...