Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Solved! Go to Solution.
@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)
You may try to use DATEDIFF Function. The post below is for your reference.
@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)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!