0
0
Tableaubi_tool~10 mins

Tableau Desktop vs Public vs Server vs Cloud - Formula Comparison Trace

Choose your learning style9 modes available
Sample Data

Comparison table of key features for Tableau Desktop, Public, Server, and Cloud editions.

CellValue
A1Feature
B1Desktop
C1Public
D1Server
E1Cloud
A2Cost
B2Paid License
C2Free
D2Paid License
E2Subscription
A3Data Privacy
B3Private
C3Public (no privacy)
D3Private
E3Private
A4Data Sources
B4Many types
C4Limited types
D4Many types
E4Many types
A5Sharing
B5Save locally or publish
C5Publish to web only
D5Share via server
E5Share via cloud
A6Use Case
B6Authoring and analysis
C6Public sharing
D6Enterprise sharing
E6Enterprise cloud sharing
Formula Trace
IF([Cost] = "Free", "Public Edition", IF([Sharing] = "Share via server", "Server Edition", IF([Sharing] = "Share via cloud", "Cloud Edition", "Desktop Edition")))
Step 1: Check Cost value in row 2 for each edition
Step 2: IF Cost = Free then 'Public Edition' else next condition
Step 3: For others, check Sharing method
Step 4: IF Sharing = 'Share via server' then 'Server Edition'
Step 5: IF Sharing = 'Share via cloud' then 'Cloud Edition'
Step 6: Else 'Desktop Edition'
Cell Reference Map
    A           B               C           D               E
1 | Feature | Desktop       | Public    | Server       | Cloud       |
2 | Cost    | Paid License  | Free      | Paid License | Subscription|
3 | Data Privacy | Private | Public (no privacy) | Private      | Private     |
4 | Data Sources | Many types | Limited types | Many types | Many types |
5 | Sharing | Save locally or publish | Publish to web only | Share via server | Share via cloud |
6 | Use Case | Authoring and analysis | Public sharing | Enterprise sharing | Enterprise cloud sharing |

Arrows:
- From B2, C2, D2, E2 (Cost) to formula
- From B5, C5, D5, E5 (Sharing) to formula
The formula uses Cost (row 2) and Sharing (row 5) columns from each edition to decide the edition type.
Result
    A           B               C           D               E
1 | Feature | Desktop       | Public    | Server       | Cloud       |
2 | Cost    | Paid License  | Free      | Paid License | Subscription|
3 | Data Privacy | Private | Public (no privacy) | Private      | Private     |
4 | Data Sources | Many types | Limited types | Many types | Many types |
5 | Sharing | Save locally or publish | Publish to web only | Share via server | Share via cloud |
6 | Use Case | Authoring and analysis | Public sharing | Enterprise sharing | Enterprise cloud sharing |
7 | Edition | Desktop Edition | Public Edition | Server Edition | Cloud Edition |
The final row 7 shows the edition type identified by the formula for each column based on Cost and Sharing.
Sheet Trace Quiz - 3 Questions
Test your understanding
Which edition is identified as 'Public Edition' by the formula?
AThe edition with Data Privacy = Private
BThe edition with Sharing = 'Share via server'
CThe edition with Cost = Free
DThe edition with Use Case = Authoring
Key Result
IF Cost = 'Free' THEN 'Public Edition' ELSE IF Sharing = 'Share via server' THEN 'Server Edition' ELSE IF Sharing = 'Share via cloud' THEN 'Cloud Edition' ELSE 'Desktop Edition'