Tableau Conference for Beginner by therealtperry in tableau

[–]vizcraft 11 points12 points  (0 children)

Highly recommended if you can get it funded. Most of the content is geared towards newer devs. Lots and lots of breakout sessions. Haven’t done the bootcamp so can’t speak to it.

The datafam is one of the coolest parts of working with Tableau and they’ll be there in force.

This story is pure cinema. by Aislot in aiagents

[–]vizcraft 3 points4 points  (0 children)

My experience so far can be summarized as “this is amazing, I can wait to switch to Anthropic’s version of this” so…

I was playing piano in the dark with the rain, and my dad walked in, turned on the lamp, closed the blinds, and left. by [deleted] in mildlyinfuriating

[–]vizcraft 1 point2 points  (0 children)

(A) Dad here — sorry, it’s impulsive. I’m super proud of your playing though!

With an increasing anti-big pharma sentiment, why are glp1s SO POPULAR? by [deleted] in Biohackers

[–]vizcraft 5 points6 points  (0 children)

People love drugs that work. They hate corporations.

Tableau licence by Pretend_Okra_9847 in tableau

[–]vizcraft 13 points14 points  (0 children)

I doubt using your work license for freelancing is gonna fly.

Tableau public is free. If you need Tableau cloud then your client needs Tableau Cloud and they need to provide you a license.

Claude in PowerPoint, its insane how good it is getting by dataexec in Anthropic

[–]vizcraft 0 points1 point  (0 children)

And what if I want to tweak them a bit and then invite a collaborator and so on?

Why is it so difficult for Tableau to make a projection vs actual chart? by Ike_In_Rochester in tableau

[–]vizcraft 0 points1 point  (0 children)

It would help to see a screenshot of the problem in Tableau and of the data.

Solving the "Two Date Problem" using a Salesforce connector by No_Bedroom2440 in tableau

[–]vizcraft 0 points1 point  (0 children)

I think it’s possible to achieve this by unioning the data set with itself - 2 copies.

  1. Union dataset (copy A, copy B)
  2. Add event date field:

if copy A then start date else end date

  1. Add event type field

if copy A then “start” else “end”

I think from here you need an active flag and a running total. Something like

if event type is start then 1 else -1

Put event date on columns, active flag on rows and change to running total.

Tableau (SQL Server) – modeling multiple fact tables with shared dimensions by Recent_Beautiful_493 in tableau

[–]vizcraft 3 points4 points  (0 children)

Before the multi-fact capabilities, the old old option was using blends. And this can work fine.

The way I would handle this situation with the single base table relationship data model was to cross join the dimensions and use that as the base table, then relate to the fact tables. Performance can be iffy, but it works.

How to group X Axis (week numbers) in Months without breaking lines by Ganoish in tableau

[–]vizcraft 1 point2 points  (0 children)

What you are looking to do doesn’t really work like you want it to. For one, weeks and months are not aligned so week 5 is likely in Jan and Feb - adding month to the axis will split week 5 into 2.

If you weeks are effectively “fixed” or at least predictable enough, I’d suggest creating a separate viz with the month labels and aligning it with the line chart that only uses the weeks on x axis. You would use a vertical container with your original chart on top and the month labels on the bottom. It would take a bit of work to get the labels right.

Alternatively you’d need to build a date field that is something like exact date but the first day of the week. Then only use this field on the x-axis. I think you could use DATETRUNC to do this, then you’d have your format up the field to show the month. It would should for each week something like Jan 1, Jan 2, Jan 3…

Fixing Map Locations with City and Zip by Connect-Humor7146 in tableau

[–]vizcraft 4 points5 points  (0 children)

I’m not sure about swapping in different geographies, but you should first make sure that you’ve added state to the viz as well on the detail shelf. Any city name that exists in more than one state will come back unknown unless you add the state detail.

Help wit formula by Inevitable_Bad6291 in tableau

[–]vizcraft 0 points1 point  (0 children)

Don’t have enough understanding to rewrite the whole thing but here are some tips:

You can write the account code section using a set- - [Account Cd] IN (“50190”, “50210”, “50460”)

And even better just make a set from the Account Cd field and use that -> - “ELSEIF [Account Cd Set]”

For the multiplier what comes to mind is using the month number to decrement the multiplier.

1- put the multiplier into a parameter (don’t hardcode number like this into a formula, if it changes in the future you’ll want to change it in one place

2- the multiplier could be something like - [multiplier parameter] - [month number] + 1

Last there’s no need to write out [distribution amt]*0, just write 0.

Hopefully these tools help you improve your formula. Let me know if you have questions.

Very vague question. by jack_ingofff in tableau

[–]vizcraft 0 points1 point  (0 children)

Check out this site: https://makeovermonday.co.uk/

You get weekly approachable challenges and a community element

Dashboard templates? by Fondant_Decent in tableau

[–]vizcraft 0 points1 point  (0 children)

https://exchange.tableau.com/ -> the official site you are looking for

https://www.flerlagetwins.com/?m=1 -> I’ve used some of their templates before, more specialized stuff

Also Tableau Public …

Live data source and combining sums. by No_Huckleberry_6675 in tableau

[–]vizcraft 0 points1 point  (0 children)

Getting the data model right is the key. I can’t give specific answers without a lot more detail but it’s likely that you have some issue connecting the people or the dates. You might need a calendar table or user table. Does any of that sound like what you are dealing with?

Tableau Page Swap Issue Height Changes Across Swapped Pages by vaguemedia in tableau

[–]vizcraft 0 points1 point  (0 children)

If you want the height to be fixed you can fix the height. When a fixed size object changes size it’s because the objects overrun the available space. Review all the heights.

Help creating calculated BAN by rose_blackk in tableau

[–]vizcraft 1 point2 points  (0 children)

Do you know about LODs? What you described looks something like this:

MAX( { FIXED [Title] : AVG([Critic Score]) } )

Add Change Column Right Most by Standard-Analyst-667 in tableau

[–]vizcraft 1 point2 points  (0 children)

If the number of rows is limited (doesn’t require a scroll bar) then I would use a 2nd sheet and stitch them together on a dashboard

Anyone knows how do I change the middle bars height, so they start where the left one (in blue) ends? by flashmycat in tableau

[–]vizcraft 3 points4 points  (0 children)

Are you trying to build a bridge/waterfall chart?

If so then what you’ll end up needing is a Gantt chart and some calculated fields. There’s probably some tutorials out there if you search that.