I would like to segregate my date data by the day of the week (monday, tuesday, wednesday, etc.) anyone know whats the function of it on redash?

What database do you use? You need to leverage the data transformation toolchain in your database and then use Redash to visualize the result. The application itself isn’t designed to parse out weekdays. As a quick example, you could do this in postgresql using the to_char() function against a timestamp (see further details about postgres here).

1 Like