Forum Discussion
dwanajw
Sep 18, 2019Copper Contributor
Pivot Table Values not matching Source values (Max Date)
My pivot table is changing the value of the source data to a different number, even though the cells are formatted exactly the same. I have a table containing dates of calls with timestamps for i...
- Sep 19, 2019
Yes, it works like this
Actually your timestamp has seconds and milliseconds. If add data to data model creating Pivot Table you have correct result. If not - Pivot Table rounds milliseconds.
SergeiBaklan
Sep 26, 2019Diamond Contributor
If Pivot Table add data to data model creating Pivot Table:
If rounding source data, you may add one more column with formula
=MROUND([@A],"00:00:01")
That's a column C in this sample
and pivot your data based on this column.
dwanajw
Sep 26, 2019Copper Contributor
Thank you so much, SergeiBaklan.
- SergeiBaklanSep 27, 2019Diamond Contributor
dwanajw , you are welcome