Forum Discussion
mikep7521
8 years agoHelper III
Week Number for a certain date
I'm attempting to create a column/measure that captures what weeknum a certain date is in but i'm not receiving the correct answer. Below is my column and measure formula: Column Est. Close Date We...
- 8 years ago
I figured out the issue. There were multiple installments that had the same closing date whcih is what was leading to the wrong values being displayed.
Anonymous
8 years agoNot applicable
Perhaps the "." after the table name cause the issue, also enclose the table name in single quote as your table namehas space in it.Try the below one.
Column
Est. Close Date Week = WEEKNUM('Close Date'[Date],2)
Thanks
Raj