Forum Discussion
shraddha_psingh
8 years agoNew Member
Create a chart per week
Hello All, I am trying to create a chart for per week analysis. The source is excel file that contains the list of assets, asset status, Begin Date and End Date. The chart should tell the user th...
v-cherch-msft
Microsoft Employee
8 years ago
You may try to add a measure and drag the measure to Visual Level Filters to show the value as requested. For example:
Measure =
IF (
DATEDIFF ( MAX ( Table[begin date] ), MAX ( Table[end date] ), DAY ) > 7,
"Over Week"
)
Regards,
Cherie