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

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.

Guttmann1983

Board Regular
Joined
Jul 27, 2015
Messages
181
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

Nick Chobotar

New Member
Joined
Dec 4, 2016
Messages
7
Hello,

Here is the correct formula for your calculated column

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






Thanks, Nick -
 
Upvote 0

Nick Chobotar

New Member
Joined
Dec 4, 2016
Messages
7
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,190,811
Messages
5,983,050
Members
439,817
Latest member
jessicabrown

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
Top