• Skip to primary navigation
  • Skip to main content
Antichaos

Antichaos

Tableau, Data Analyse & Visualisatie

  • Home
  • Consultancy
  • Training
  • Blog
  • Portfolio
  • About Me
  • Newletter
  • Contact
  • Show Search
Hide Search

Antichaos Blog

Comments in Tableau

Johan de Groot · 16 November 2020 ·

When you are creating a calculated field in Tableau Desktop, Server of Prep you might want to create some comments to help others see what the purpose of this field is, or explain the calculation that you made. In other situations you might want to test a line of code, and disable a previously written block of code without deleting it.

This is all possible using comments in calculated fields.

[Read more…] about Comments in Tableau

502 errors on datasource downloads from Tableau

Johan de Groot · 8 November 2020 ·

If you experience 502 errors when downloading large datasets from Tableau Server – either in a browser or Tableau Desktop – you might occur problems not related to Tableau Server, but a proxy or gateway in front of the server.

[Read more…] about 502 errors on datasource downloads from Tableau

Save a Tableau workbook if you can’t save it

Johan de Groot · 29 October 2020 ·

A small tip for a situation that is occurring once in a while to me (probably Mac specific):

If you have been working on a Tableau dashboard for quite a while, you suddenly can’t save the workbook anymore. ‘Save’ results in a popup which disappears very quickly, and ‘Save as’ shows the ‘save as’ dialog for a few milliseconds before disappearing again. Odd behavior – but especially annoying because you really want to save the changes you have made in the last two hours…

[Read more…] about Save a Tableau workbook if you can’t save it

Year-to-date in Tableau

Johan de Groot · 11 October 2020 ·

If you want to compare last year to this year ‘to date’, you have to take into account that a leap-year adds 1 extra date to the year – so you can’t just compare the day-of-year from this and last year.

Often this filter is used:

DATEPART('dayofyear',[Date]) <= DATEPART('dayofyear',TODAY())

But this is a better one, since this compares day and month:

YEAR([Date]) >= YEAR(TODAY())-1
AND (MONTH([Date]) < MONTH(TODAY())
OR
(MONTH([Date]) == MONTH(TODAY())
AND DAY([Date]) <= DAY(TODAY())))

If you want to have a ‘year to date’ until today (so today excluded), use this one:

YEAR([Date]) >= YEAR(TODAY()-1)-1
AND (MONTH([Date]) < MONTH(TODAY()-1)
OR
(MONTH([Date]) == MONTH(TODAY()-1)
AND DAY([Date]) <= DAY(TODAY()-1)))

Bohemian Rhapsody: From Top 2000 to jump-chart

Johan de Groot · 11 October 2020 ·

Watch my presentation of the Top 2000 jumpchart, held on the Virtual User Group meeting on May 27th 2020:

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 10
  • Page 11
  • Page 12
  • Page 13
  • Page 14
  • Interim pages omitted …
  • Page 16
  • Go to Next Page »

Antichaos

Copyright © 2025