Forum Discussion
TiaCamilian
7 years agoResolver I
Calculate code by weeks
I have a table with a startDateTime and Code1. I need to be able to Filter the date using a calendar table by doing FILTER(ALL('Calendar'[Date]),
AND('Calendar'[Date] >= TODAY(), 'Calendar'...
- Anonymous7 years ago
HI TiaCamilian ,
You can try to use following measure if it works for your requirement:
SumCode6 = CALCULATE ( COUNT ( MovesConfirm[Code1] ), ALLSELECTED ( 'MovesConfirm' ), VALUES ( 'MovesConfirm'[WeekNumber] ) )Regards,
Xiaoxin Sheng
Anonymous
7 years agoNot applicable
HI TiaCamilian ,
You can try to use following measure if it works for your requirement:
SumCode6 =
CALCULATE (
COUNT ( MovesConfirm[Code1] ),
ALLSELECTED ( 'MovesConfirm' ),
VALUES ( 'MovesConfirm'[WeekNumber] )
)
Regards,
Xiaoxin Sheng
TiaCamilian
7 years agoResolver I
This works.
Thank you