hkkwon89
08-22-2022Cloud Apps
How do I display the earliest date as a column in a pivot table?
Hi,
I need to create a healthcare pivot table with three columns.
Provider Name, number of claims by provider, and earliest date of encounter for each provider.
Something like above.. However this being a pivot table is it possible to achieve the last column?
I did put in a calculated column to rank them, ToInt(rankasc(assigned_reg_userid,Date_of_visit))
Any help/workaround is appreciated!
Hi hkkwon89 ,
One option is using Rank function in widget.
Create a value panel with formula something like this:
rank(max([Days in Date]),"ASC","1223",[provider])
Then apply filter on value panel to display only the rank = 1.
Finally disable the value panel.
-Hari