Reputation: 75
I want to select the latest name of each IDnum.
Below is a sample of the data set
I want to summarize the data on IDnum , but for each IDnum show the latest version of the name
How can I do this in Tableau?calculated field?
Upvotes: 0
Views: 30
Reputation: 1735
See if this works:
IF DATE = {FIXED [IDnum]:MAX([Date])} THEN [Name] END
Upvotes: 1