With regard to your second question, if you’re using @Melissa’s awesome Extended Date Table, this is a snap. You can just create a one column table of working dates via:
Working Dates =
CALCULATETABLE(
VALUES( Dates[Date] ),
FILTER(
Dates,
Dates[IsWorkingDay] = TRUE()
)
)
- Brian