Heap in Looker?

  • Post category:Looker
  • Reading time:2 mins read

Heap automatically captures every user behavior across websites and applications - clicks, taps, gestures, form submissions, page views, field changes etc. - and allows you to enrich your data with…

Continue ReadingHeap in Looker?

DAX Expression – How to determine Shift in “Shift” column based on Time in “Time” Column

  • Post category:Power BI
  • Reading time:2 mins read

Case statement CASEWHEN CONVERT(VARCHAR(8), datetime, 108) BETWEEN'07:00:00' AND '14:59:00' THEN 'Day'WHEN CONVERT(VARCHAR(8), datetime, 108) BETWEEN'15:00:00' AND '22:59:00' THEN 'Evening'ELSE 'Night'END AS ShiftName You can also use Switch statement WorkShift =…

Continue ReadingDAX Expression – How to determine Shift in “Shift” column based on Time in “Time” Column