你能帮我把每个季度每个月的总天数还给我吗?例如,我已经有92天为2025年12月,但我如何显示92天的10月和11月以及?

发布于 2022-01-28 11:21:11
如果只需要计数,则可以使用度量值:
QuarterDays = calculate(countrows(VALUES('Calendar'[Date])), FILTER(ALL('Calendar'), selectedvalue('Calendar'[Year]) = 'Calendar'[Year] && selectedvalue('Calendar'[Quarter]) = 'Calendar'[Quarter] ))https://stackoverflow.com/questions/70892053
复制相似问题