Help with WEEKNUM DAX

Guttmann1983

Board Regular
Joined
Jul 27, 2015
Messages
181
Hi, I am trying to figure out where I am going wrong with the below formula

=IF(WEEKNUM([Demand Sent]=WEEKNUM(TODAY()-1),2,"Last Week",""))

I am trying to just return "Last Week" if the date in column "Demand Sent" was from last week (Mon-Sun)
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Edit to this ---

I also need to check if the year of the date in column Demand Sent is the current year as well...
 
Last edited:
Upvote 0
Hello,

Here is the correct formula for your calculated column

=
IF (
WEEKNUM ( Table1[Demand Sent] )
= WEEKNUM ( TODAY () ) - 1,
"Last Week",
""
)






Thanks, Nick -
 
Upvote 0
This one with a condition checking for current year

Nick -


=
IF (
WEEKNUM ( Table1[Demand Sent] )
= WEEKNUM ( TODAY () ) - 1
&& YEAR ( Table1[Demand Sent] ) = YEAR ( TODAY () ),
"Last Week",
""
)
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,551
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top