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.
Jolly Day,
I currently have my visual set to just give me year 2021. I am wanting it to automatically update going two years back so I need it set to year 2022 when we begin year 2024. Is there a way to accomplish this? I created a year column that just parsed the year from my date so we also have the full date to work with. Any help with this would be greatly appreciated!
Thanks in advance,
Idon'tquitegotthepowerBI
You could create a measure like
Year for TOPN =
VAR ChosenYear =
SELECTEDVALUE ( 'Date'[Year] )
RETURN
IF ( ChosenYear <= YEAR ( TODAY () ), ChosenYear )
and then add a TOPN filter to your visual on the Year column using this measure as the value and set it to only show the top 2
User | Count |
---|---|
26 | |
10 | |
8 | |
6 | |
5 |
User | Count |
---|---|
33 | |
13 | |
11 | |
9 | |
8 |