Direkt zum Hauptbereich

About me

See my CV

Why I blog? 
Tableau offers a lot of possibilities to make creative visualization. This tool also has a mass of cool features and I would like get to know some them. I try to rebuild some elements, what I discovered on tableau.public or some informative blogs like vizwiz, storytellingwithdata as also vizcandy. Sometimes I meet people with the same interests like me, so I learn also from them. In my blog, I try to cement my knowledge and also share them with you.

Why do I blog in English? 
My mother tongue is Russia. I also speak German very well. But I would like to learn English. When I blog an English I learn a lot. I think this is the best way to improve my English skills. So please, don't be strict, if you notice some mistakes in my posts. :)

What kind of targets do I pursue with my posts? 
My tableau workbooks are not perfect.  But I am working on that. My aim is not only to create cool dashboards, but also to learn how to tell a story with data. In addition I would like to learn how people (i.e. the audience) read the worknooks. This info help to create more effective dashboards. Thats why I would like to improve my skills as a dashboard designer. So please, don't hesitate to give me your feedback.

So feel welcome on my page!


Kommentare

  1. Great blog.you put Good stuff.All the topics were explained briefly.so quickly understand for me.I am waiting for your next fantastic blog.Thanks for sharing.Any coures related details learn...

    Tableau Online Training|
    SAS Online Training
    R Programming Online Training|

    AntwortenLöschen
    Antworten
    1. Hey Sai,
      Thank you so much for your comments! It motivates me. :)

      Löschen

Kommentar veröffentlichen

Beliebte Posts aus diesem Blog

Tableau Table Calculation Function: WINDOW - Functions

The functions which begin with „WINDOW_...“ are also common used in Tableau. Remember! The “WINDOW_” function stays for the offset in data set, so-called WINDOW. It can look like this: 1) You can see the “WINDOW” clearly because of separation line between rows: 2) You limit the “Window” by giving the information about the first and the last row number. In this case, you give Tableau the information about the data offset. Let's have a look at the example with WINDOW_SUM I created a sample with data from Superstore. I would like to have a total sum of Sales in every row. In order to do this I created a calculation field: WINDOW_SUM(SUM([Sales]), FIRST(), LAST()) With this formula I said to Tableau: “Hey Tableau, calculate the total sum of sales from the first till the last row in the data set” And this is the result: Tableau wrote the result (total sum of Sales) in every row. As another option you can cumulate the result in each row and...

Tableau Number Function: ABS

I have been working with Tableau since 2014, but I have still a feeling that my knowledge about this software not good enough. When I rebuild dashboards from tableau.public I am fascinating how some people can create amazing formulas and thus it makes the calculation of data sets easier. Sometimes I got stuck by creating of graphs and I do some calculations with data in Excel before I visualize them. Otherwise, you can find the definition of every function by creating of calculation field. But, honestly, are this definitions always clearly enough? For me not and I am done by doing long calculations with Excel. 😠 I like my work and I want to have more fun and not do such long calculation with Excel! I took up a challenge and decided to go through every function in tableau in order to understand how they work.  I would like to begin with ABS function.  ABS function is very easy one, as it used to get an absolute value of a number from a negative one. As an examp...

Level of Detail Expressions (LoD) in Tableau: FIXED

The last keyword of LoD I am talking to is FIXED. Remember! By the function INCLUDE we included some numbers into the calculation even though we don't visualize this number. By the function EXCLUDE we exclude some numbers from the calculation even though we visualize them. With the function FIXED we “freeze” some numbers in our calculation, i.e. we can run calculation of all art, but the “fixed” dimension remains unchanged. This is the structure of FIXED function: With this function we can e.g calculate a frequency of customer's orders, calculate unique customers from month to month as the cumulative value etc.. Let us have a look to an example, where we analyze sub-categories: I created a simple cross table with the data from Superstore: I would like to see this numbers in a hint text, if I analyze sub-categories. I created a stucked bar chart, which shows sales in each region. I also highlighted sub-categories with different color, as I would ...