Skip to main content

#Of0 discussing

Row limitation on tableau publicSince updating tableau public there seems to be a new rom limitation of 1 million rows.

 

Opening a workbook with count(rows) > 1 000 000 results in an error

 

Was this intended and is this new rule here to stay?

 

Upgraded from v2020.4 to v2021.4 on a windows machine

16 answers
  1. Feb 8, 2022, 12:25 PM

    @David Browne​ Looks like it was a firewall problem on the machine itself and not a tableau specific problem. Thanks for all the help

     

    Disabled the firewall and the error is gone. Very confusing error message nonetheless...

0/9000

Data looks like this

Order No.     |     Complete     |     Completed Time

123                    1                             Jan 5, 1:25pm

234                    0                              NULL

345                    1                              Jan 5 2:30

456                    0                              NULL

 

The graph I want to create is the total number of completed orders each hour as a percentage of the total number of orders for the day.  I have the completed items counted for the hour they are completed, but I can't figure out how to graph the data as a trend line moving to 100%

 

Represent data as a percentage of total

 

Thanks,

Adam.

4 answers
  1. Jun 6, 2018, 8:13 PM

    Then You need Running Total

0/9000

Hi All,

 

I am trying to build a waterfall chart based on value present in certain columns. My data looks something like this.

 

Create Categories for waterfall chart

 

I want to create a waterfall chart to show that we are considering only those records which have US as the country and a non-null DMA for modeling purpose. I am trying to build a waterfall chart to show this.

Based on the above data it should be like this:

 

pastedImage_2.png

 

I am attaching the dummy excel in case you need to play around.

 

Thanks,

Tejal Narkar

6 answers
  1. Feb 27, 2017, 10:47 PM

    Hi, Tejal

     

    Not sure if this is exactly what you're looking for but I reversed the measures so it can be calculated to subtract from the total - the size represents the #of records. Please find below screenshot and attached workbook.

    Hi, Tejal Not sure if this is exactly what you're looking for but I reversed the measures so it can be calculated to subtract from the total - the size represents the records.

     

    Hope this helped.

    Thanks,

     

    Mia

0/9000

Hi,

 

I'm trying to see if there is a calculated field or something that can help me resolve a problem. The below image is just a cross tab of some data I have in a workbook, what I am trying to do is come up with some dummy field or calculation that says if ALL Source values = ALL CSS values then PASS, else FAIL for an individual Unique ID. I am trying to roll up the "Pass" or "Fail" indicator at the Unique ID level, not the individual record level.  For example, for both of the Unique ID's below these would FAIL because they have at least 1 record that fails.

 

Calculation Question

I am working off of Tableau 9.1, and can attach a sample workbook if necessary.

 

Thanks!

Morgan

17 answers
0/9000

Hi guys,

I have an issue with my formula here.

My goal is to show the CUMULATIVE cases, not THE CASES in that period

Cumulative with R12Let's say that I'm choosing Oct 10/13/22 to 10/17/22, I also want to see the cases before that. Here's the example of my logic:

imageI hope someone can help with this. I appreciate your time so much! Thank you!

12 answers
0/9000

Question: - In the below snapshot, there is a column called business day which shows #of working days(excluding Sat and Sun).

                  1. want this business days to be fixed whether I select single employee or multiple employees. (Business days as per months)

                  2. When I select individual days from days filter, then business days should be as per the dates selected.

                  3. whenever a month is completed, show complete business days for that month.

 

Dynamic Business Days

 

Could anyone in this forum assist me in getting this issue resolved?

 

Thanks

Ashwini

3 answers
  1. Jan 30, 2020, 2:42 PM

    Hi Ashwini,

     

    If you use a FIXED LOD expression to find total business days per month, you can then choose which filters to add to context so that the filter will (if added to context) or will not (if not added to context) impact the number of business days shown in the view.

    Hi Ashwini, If you use a FIXED LOD expression to find total business days per month, you can then choose which filters to add to context so that the filter will (if added to context) or will not (if n

    In this case, I believe you want to add Day to context, but NOT add Employee Name to context.  Workbook is attached - hope this helps!

     

    pastedImage_0.png

0/9000

Hi,

I have  two metrics in my table @HCPs and second %share. The problem is the second one is not summing up to 100%. The problem is the denominator which takes 58 (which is total # of HCp's each cycle - filter). How to force Tableau to take  140 as denominator to sum up % properly?

 

How to present % share metric summing to 100%

Totals not calculated properly

12 answers
  1. Apr 25, 2018, 7:53 AM

    You can't use the normal table calculations in this example, so create a calculated field like this :

     

    COUNTD([Dwh Customer Id])/WINDOW_SUM(COUNTD([Dwh Customer Id]))

     

    and use that on your % column

0/9000

Hello,

 

I'd like to be able to use the bottom Category/Sub-Category/ProductName charts to filter # Order Id in the middle chart while keeping the # State unaffected.  At the same time, I'd like the Ship Mode Filter on the right to continue working.

 

The top "Verify # State" chart is there to just eyeball that it's working  correctly.

 

I've tried various LODs and using the LOOKUP(ATTR([dimension]), 0) filter replacement to no avail.

 

Many Thanks!,

Alex

 

Calculation that ignores some filters but not others

5 answers
  1. Nov 2, 2017, 4:59 PM

    Hey alex apolloni,

     

    I think you need to simply modify your calculated field named 1.Order/State to include the order date within your LOD.

     

    It should look like this:

    COUNTD([Order ID]) /

    sum({ FIXED YEAR([Order Date]),[Ship Mode]:countd([State])})

     

    I tested it by clicking on Binders sub-category and 2014 changed from 5 (145/29) to 2.313 (37/29).

     

    Let me know if this is correct and what you were attempting. If so, you were extremely close!

     

    -Wes

0/9000

Hello All ,

 

I have just started working in tableau for 6 months. I want to plot a line graph between Order Date(Continuous) and #Of Bookings. Order Date is in Second granularity.

In the line graph I am not able to show the seconds for which there are no bookings. Ideally for those order date #of Bookings should be shown as zero. (Graph Sheet)

But in the tabular form I am able to see #of Bookings as 0 by clicking "Show Missing Values"(Table Sheet).

Please let me know if this is possible to show the missing dates record in a line graph with some default value(In this case 0 Bookings) . Showing missing dates in a Line Graph

4 answers
  1. Oct 3, 2016, 10:23 PM

    Current

    Current You can add one formula. This is typical formula to make null to zero. [ZN(value)]zn(lookup(sum([Value]),0)) then it still shows this.

     

    You can add one formula.  This is typical formula to make null to zero.

     

    [ZN(value)]

    zn(lookup(sum([Value]),0))

     

    then it still shows this.

    pastedImage_6.png

     

    Then "show missing value"

     

    pastedImage_4.png

    pastedImage_2.png

    If you change the granularity to hour

    pastedImage_3.png

     

    BTW, I could not find any value in your file?

     

    Thanks,

    Shin

0/9000

Hello All,

I'm a Tableau newbie. Trying to understand the LOD expressions. For most part I believe I understand how the LOD work and how the results are reconciled with View level of detail.

 

What is creating the biggest confusion is, for example the difference between the two expressions below and when to use these:

 

1) AVG({FIXED Category: SUM(Sales)})

As I understand: For each Category, find the sum of sales and then average them

 

and

2) {FIXED Category: AVG(Sales)}

As I understand: For each Category, find the Average Sales

 

They return different results. 1) is average sales by category 2) average sales when computed dividing by #of records.

 

Question: When do I use 1 or 2? What practical use cases are there that I can determine which one to use.

 

Thanks

Anu

6 answers
  1. Feb 25, 2021, 8:44 PM

    {AVG(Sales)} this would give you Average Sales of Categories

    {AVG(Sales)} this would give you Average Sales of Categories 

0/9000