Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi Team - Could you please help me how to expose this filter using DAX? I need to show values that always starts in current week Monday to Sunday to 12 more future weeks. I was only able to create "Current week & Next week" as per below:
Solved! Go to Solution.
Hi @jiji ,
I have created a simple sample, please refer to it to see if it helps you.
Create a column.
Column =
VAR _weeknum =
WEEKNUM ( 'date'[Date], 1 )
VAR _weeknumtoday =
WEEKNUM ( TODAY (), 1 )
RETURN
IF (
_weeknum >= _weeknumtoday
&& _weeknum <= _weeknumtoday + 12,
"currentWk to 12 more future wks",
BLANK ()
)
Then you can filter the column is not blank.
If I have misunderstood your meaning, please provide more details with your desired output and your pbix file without privacy information.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @jiji ,
I have created a simple sample, please refer to it to see if it helps you.
Create a column.
Column =
VAR _weeknum =
WEEKNUM ( 'date'[Date], 1 )
VAR _weeknumtoday =
WEEKNUM ( TODAY (), 1 )
RETURN
IF (
_weeknum >= _weeknumtoday
&& _weeknum <= _weeknumtoday + 12,
"currentWk to 12 more future wks",
BLANK ()
)
Then you can filter the column is not blank.
If I have misunderstood your meaning, please provide more details with your desired output and your pbix file without privacy information.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
I am not sure how your Dates Table looks like, but I tried to create a sample like the attached.
Please check the below DAX formula for creating a new column and the attached pbix file.
Expected outcome CC =
VAR _addweeknumbercol =
ADDCOLUMNS (
Dates,
"@weeknumber", WEEKNUM ( Dates[Date] ),
"@year", YEAR ( Dates[Date] )
)
VAR _futuredate =
TODAY () + 84
VAR _weeknumberaftereightyfourdays =
MAXX ( FILTER ( _addweeknumbercol, Dates[Date] = _futuredate ), [@weeknumber] )
VAR _yearnumberaftereightyfourdays =
MAXX ( FILTER ( _addweeknumbercol, Dates[Date] = _futuredate ), [@year] )
VAR _lastdateaftereightyfourdays =
MAXX (
FILTER (
_addweeknumbercol,
[@weeknumber] = _weeknumberaftereightyfourdays
&& [@year] = _yearnumberaftereightyfourdays
),
Dates[Date]
)
RETURN
IF (
Dates[Date] >= TODAY ()
&& Dates[Date] <= _lastdateaftereightyfourdays,
"currentWk to 12 more future wks",
"Others"
)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
13 | |
12 | |
11 | |
11 | |
8 |