Forum Discussion
DharmaChinta
7 years agoFrequent Visitor
Table visual to show only current week Data By default without any filter
Hi Team, Is there a way to show only One week Data By default without any filter on a table visual and based on the week selection change accordingly ? May be a DAX that just filter on the curren...
- 7 years agoHi DharmaChinta,
Try to create a measure like this
Measure =
CALCULATE (
SUM ( Table[Column] );
FILTER (
ALL ( Table[DateColumn] );
WEEKNUM ( Table[DateColumn] ) = WEEKNUM ( TODAY () )
)
)
Regards,
MFelix - 7 years ago
Hi DharmaChinta,
If you still want the slicers to work on it, you can try the measure below.
Measure = VAR selectedWeek = SELECTEDVALUE ( 'calendar'[week] ) RETURN IF ( ISBLANK ( selectedWeek ), CALCULATE ( SUM ( 'table'[value] ), FILTER ( calendar, WEEKNUM ( 'calendar'[date], 2 ) = WEEKNUM ( TODAY (), 2 ) ) ), CALCULATE ( SUM ( 'table'[value] ), FILTER ( calendar, WEEKNUM ( 'calendar'[date], 2 ) = selectedWeek ) ) )Best Regards,
Dale
MFelix
7 years agoSuper User
Hi DharmaChinta,
Try to create a measure like this
Measure =
CALCULATE (
SUM ( Table[Column] );
FILTER (
ALL ( Table[DateColumn] );
WEEKNUM ( Table[DateColumn] ) = WEEKNUM ( TODAY () )
)
)
Regards,
MFelix
Try to create a measure like this
Measure =
CALCULATE (
SUM ( Table[Column] );
FILTER (
ALL ( Table[DateColumn] );
WEEKNUM ( Table[DateColumn] ) = WEEKNUM ( TODAY () )
)
)
Regards,
MFelix
Anonymous
5 years agoNot applicable
To add also the current year:
Measure = CALCULATE ( SUM ( Table[Column] ); FILTER ( ALL ( Table[DateColumn] ); WEEKNUM ( Table[DateColumn] ) = WEEKNUM ( TODAY () ) && YEAR ( Table[DateColumn] ) = YEAR ( TODAY () ) ) )
Thanks a lot!
Sorry I deleted your answer by accident
- brinky4 years agoHelper IV
Is it possible have sales till yesterday instead till today?
- Ashish_Mathur4 years agoSuper User
Hi,
Subtract 1 from TODAY() i.e. TODAY()-1