May 31 2021 05:00 PM
Hi All,
I would like to COUNT the number of days worked within this pivot table, but it is counting every line entry date.
For example this Job number is showing 12 days where it should be showing only 5
May 31 2021 05:48 PM
May 31 2021 10:35 PM
I'm not sure how to get what you want from a PivotTable.
However, Excel has made several improvements over the past few years so you can do the needful on your own (assuming you have the appropriate version of Excel).
Suppose that
* your data are in a table as Excel understands it (Insert | Table) and
* that the job of interest is in H2.
Then the 1st formula will give you a list of unique dates for the job and the 2nd formula will give you a count of the unique dates.
=UNIQUE(FILTER(Table1[Date],Table1[Job No]=H2))
=COUNTA(UNIQUE(FILTER(Table1[Date],Table1[Job No]=H2)))
May 31 2021 10:55 PM
Thank you for your suggestions.
I have managed to get the information by including a formula into the data spreadsheet which counted only when the date changed, then refreshed the pivot table so that it showed the actual number of days worked.
Jun 01 2021 03:18 AM
SolutionCreating PivotTable add data to data model
and next in Value Field Setting select Distinct Count
Without data model this option is not available.
Feb 09 2023 02:54 PM
Hi Mel, I am struggling with the same issue. Would you mind sharing the formula you used to count the days / day changes.
Jul 31 2023 04:17 AM
Jun 01 2021 03:18 AM
SolutionCreating PivotTable add data to data model
and next in Value Field Setting select Distinct Count
Without data model this option is not available.