Forum Discussion

SimonGrams's avatar
SimonGrams
Icon for Helper I rankHelper I
8 years ago
Solved

Display only data of full weeks

Hi everyone,

 

I work with a database which is updated daily (05:00 am) , but my users only want to see full weeks (Monday - Sunday) in their dashboards.

---> I do not understand what kind of a column I can create which includes a sign like 'hey, today is Thursday, so do not include me in the graphics' :).

 

I used to work with data, which was only updated once a week (Monday), so I created Columns like:

week_Max =
IF (
    data[Year_Week] = MAX ( data[Year_Week] );
    "week_Max";
    IF ( data[Year_Week] = MAX ( data[Year_Week-1] ); "week_Max-1" )
)

Afterwards I could create measures to compare the recent 2 weeks (calculate(sum(...); week_max="week_max")....).

But how do I create a sign which tells me that the Max(Date) is not part of a full week, so it should be ignored in the graphics?

 

Any ideas?

 

Thanks in advance

  • SimonGrams's avatar
    SimonGrams
    8 years ago

    v-chuncz-msftThanks for your answer.

     

    I solved my problem by creating a column in my date table, which tells me how many days of the week already exist

     

    DaysOfWeek =
    COUNTX (
        FILTER ( 'Date_final'; EARLIER ( 'Date_final'[YearWeek] ) = 'Date_final'[YearWeek] );
        'Date_final'[YearWeek]
    )

    Afterwards I created my max-week logic by this column (max week where DaysOfWeek = 7)

     

     

2 Replies