Forum Discussion
Anonymous
3 years agoNot applicable
IN/OUT calcule
Hello, I want to calculat the IN and OUT of my stock for 1 week. I have already try that but it's more complicated than we think. For exemple I have this table: Article Name article Week...
Imad-R
3 years agoFrequent Visitor
I have add 2 date column in Data table and that is a sample of Date table :
| Date | YEAR-WEEK |
| 01/01/202 00:00 | 2023-01 |
| 02/01/2023 00:00 | 2023-01 |
| 03/01/2023 00:00 | 2023-01 |
| 04/01/2023 00:00 | 2023-01 |
| 05/01/2023 00:00 | 2023-01 |
| 06/01/2023 00:00 | 2023-01 |
| 07/01/2023 00:00 | 2023-01 |
| 08/01/2023 00:00 | 2023-02 |
| 09/01/2023 00:00 | 2023-02 |
| 10/01/2023 00:00 | 2023-02 |
| 11/01/2023 00:00 | 2023-02 |
| 12/01/2023 00:00 | 2023-02 |
| 13/01/2023 00:00 | 2023-02 |
and this is DAX code :
Date = ADDCOLUMNS(
CALENDARAUTO(),
"YEAR-WEEK", YEAR([Date])&"-"&RIGHT("0"& WEEKNUM([Date]),2))
In addition the link between the table.
lbendlin
3 years agoSuper User
Wait what? Is it Week-in or Date-in in your fact table?
- Imad-R3 years agoFrequent Visitor
They have week IN and date IN in my fact table I have modified this table to match with my problem. They have two temporal dimension in this table because I must have the Date IN for have the Week IN and the Date OUT for the Week OUT.
The Date IN column are link with my Date table but I don't know if it's good to link with this column ?
- lbendlin3 years agoSuper User
oh yes, it is much better than having to link via the week number. You always want to link at the lowest possible granularity level to avoid M:M relationships.
- Anonymous3 years agoNot applicable
I have find a solution for my problem.