Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

4 week periods based on weeks

Hello everyone, I have a date table and want to create a column for the period. 1 period = 4 weeks. So the table would have to look like this. 

WeekPeriod
11
21
31
41

What functions do i have to look at? Thanks in advance.

  • Anonymous , your description is too ambiguous, so I make a guess,

    = Table.AddColumn(Source, "Period", each Number.RoundUp([Week]/4))

2 Replies

  • CNENFRNL's avatar
    CNENFRNL
    Icon for Community Champion rankCommunity Champion

    Anonymous , your description is too ambiguous, so I make a guess,

    = Table.AddColumn(Source, "Period", each Number.RoundUp([Week]/4))

    • Anonymous's avatar
      Anonymous
      Not applicable

      This is exactly what i mean. Thanks.