I have a schedule of games for a sports league in sheet1 with dates in column “A” and remaining schedule data in the other columns. I need to take the dates and find just the unique dates and count the unique dates and paste them into a different sheet. The dates need to be transposed into column headers and the number of unique dates is needed to format the borders of where the dates were pasted. Also, the number of dates will change as new seasons are played.
I can copy the entire date column to a temporary sheet and use the range.remove duplicates to get the unique dates, get the number of unique dates by Cells count function and then using the range command by selecting the first cell and the count of unique dates to paste the dates in the new sheet with a transpose of true.
Is there a way that I can do this without the ‘gerry-rigging’ of using a temporary sheet. I need to take unique dates from a column of dates move them to rows in a new sheet and get the count to use when I format the columns.
I can copy the entire date column to a temporary sheet and use the range.remove duplicates to get the unique dates, get the number of unique dates by Cells count function and then using the range command by selecting the first cell and the count of unique dates to paste the dates in the new sheet with a transpose of true.
Is there a way that I can do this without the ‘gerry-rigging’ of using a temporary sheet. I need to take unique dates from a column of dates move them to rows in a new sheet and get the count to use when I format the columns.