Reputation: 64
I'm awkward as I only have Tableau public on my own computer. I'm using proper tableau on a remote desktop and can't upload data/files.
I'm wondering if anyone can give me the general route as to what I'm trying to do. I'm not sure if this is really easy and I'm just missing a critical feature of tableau. I've used parameters, filters and calculated fields and I think what I want to do is a combination of these and possibly passing variables (parameters) to different sheets (if that's possible?)
Here goes...
I have one set of data. A list of universities and their "score" (uni ranking). I want to pick one university and compare (subtract) their score from the other universities to find the nearest university by 'score'.
I don't think it can all be done on one sheet? Is that correct? Do I need to create a sheet to allow for 1,2 and 3 and then pass the parameter to a new sheet for 4 ad 5?
I'm not sure if this is the right way to do things so any clues/tips/examples are really helpful. I'm not sure I'm googling the right thing either.
Thanks
Jason
Upvotes: 1
Views: 933
Reputation: 11921
Create two calculated fields:
{ fixed : min(if [university] = [selected-university] then [score]) }
Where [selected-university] is your parameter.
To go further, learn about LOD calcs.`
Upvotes: 2