The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I have a table visual on my report that is composed of columns from four different tables. One of my slicers is choosing from a list of dates, in the format YYMM, in whole number datatype. I am trying to filter the table visual to include only the rows associated with the YYMM that is less than or equal to the one selected, preferable using a measure.
Any help is appreciated!
@Anonymous , Try a measure like
measure =
var _max =maxx(allselected(Date), Date[YYMM])
return
calculate([measure],filter(all(Date),Date[YYMM]<=_max))
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
7 | |
7 |