Why can't I add a date field to a summary table?

657
2
12-20-2018 08:46 AM
by Anonymous User
Not applicable

I would like to create a summary table using a date field, which I need to sort this data. The data is of sample results, and sorting by date sampled is a requirement.

When I select the date field, the table icon grays out. This is true no matter how many other fields I have selected. The date field is a complete deal-breaker for the summary table, apparently.

Is there any way I can get summary table to accept a date field in Insights for ArcGIS?

Thank you,

Randy McGregor

0 Kudos
2 Replies
LindaBeale
Esri Contributor

Hi,

Currently summary tables do not support date/time fields.  The date components we add are strings so they can be added or you can do a field calculation (in the data table) to convert to a string and then display the full date.

If you want to see the data as is, there is the data table that will show you all the data (dates and all).  The data table can be docked at the bottom of your page too.

0 Kudos
TobiSellekaerts
New Contributor III

Linda - Thank you so much for this answer - adding a new field, and calculating it to be comprised of some of the date subcomponents together seems to work for me (I'm not the OP).  The new field calculation looks a bit like:

CONCATENATE(MYDATEFIELD - Year, "-", MYDATEFIELD - Month, "-", MYDATEFIELD - Day of month)

and the resulting field values look like:

2021-5-6

However, when you view this column in a summary table, and try to sort it in ascending or descending order, it doesn't sort properly.  Here is a sample of values theoretically in ascending order:

  • 2020-10-20
  • 2020-11-25
  • 2020-10-7
  • 2020-10-8
  • 2020-12-8

Have I missed a trick here? Presumably this is not the expected sort order.

0 Kudos