Replies: 1 comment 2 replies
-
hmm, off the top of my head, I don't believe so. that fails with duplicate key? iirc, in Excel it renames the "column" in the pivot so it can show and keeps the underlying column in the data source. i don't remember making provisions for that. it may be doable if you |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Add-PivotTable -PivotTableName "Provider Aggregation" -SourceWorksheet $prescriptions -ExcelPackage $package -PivotRows "Approved By", "Diagnosis Code" -PivotData @{"Daily MME Equivalent*" = "Min"; "Daily MME Equivalent*" = "Max"} -PivotDataToColumn
This fails for obvious reasons.. but I would like my pivot chart to show both min and max of a single column. Is this possible?
Beta Was this translation helpful? Give feedback.
All reactions