Forum Discussion
rautaniket0077
Resolver I
1 year agoAggregation based on group by/ summarization and filter.
Hi, i have attached the sample data now there are couple of things that i want to achieve using power bi- 1) first thing is i need to filter the table based on the month-year selected from the ...
Anonymous
1 year agoNot applicable
Hi ,
If you have a problem with the data type, try changing the date type to date.
For the condition that the year to be equals to year of selected date, creating the new measure to filter the values.
Measure =
var _year = SELECTEDVALUE('Date'[MonthYear])
RETURN
IF(YEAR(_year) = SELECTEDVALUE(Data[Year]), 1, 0)
Drag the measure to the table visual Filters pane and set show item is 1.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.