Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Obeybe
Frequent Visitor

Update report with weekly information

Hi,

I'm new in Power Bi and I want to update my newly created report with info from a sharepoint list every week.

Now I have to modify the date manually in my report but I would like te do this automaticlly.

My report as 4 columns

BookingDate, Event_Location, Registred_Status and Measure_By_Desks

Obeybe_0-1606127030599.png

Can I achieve this with Power BI.

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Obeybe ,

 

According to my understand, you want to keep data always current week,right?

You could add a WeekNum column then use the following formula:

WeekNum =
WEEKNUM ( 'Table5'[Date], 2 )
Measure =
IF ( MAX ( 'Table5'[WeekNum] ) = WEEKNUM ( TODAY (), 2 ), 1, 0 )

Then apply the measure to the filter pane:

11.25.2.1.gif

When your data has updated, you need to click "Refresh", then it will change automaticlly:

11.25.2.2.gif

 

Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.

 

Best Regards,
Eyelyn Qin

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @Obeybe ,

 

According to my understand, you want to keep data always current week,right?

You could add a WeekNum column then use the following formula:

WeekNum =
WEEKNUM ( 'Table5'[Date], 2 )
Measure =
IF ( MAX ( 'Table5'[WeekNum] ) = WEEKNUM ( TODAY (), 2 ), 1, 0 )

Then apply the measure to the filter pane:

11.25.2.1.gif

When your data has updated, you need to click "Refresh", then it will change automaticlly:

11.25.2.2.gif

 

Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.

 

Best Regards,
Eyelyn Qin

amitchandak
Super User
Super User

@Obeybe , Have column like these in you date table

Start Week = 'Date'[Date]+-1*WEEKDAY('Date'[Date],2)+1
End Week = 'Date'[Date]+ 7-1*WEEKDAY('Date'[Date],2)

Week Type = Switch( True(),
[start week]<=Today() && [end date]>=Today(),"This Week" ,
[start week]<=Today()-7 && [end date]>=Today()-7,"Last Week" ,
[Week Name]
)

 

use week type as slicer and filter that on this week

 

Also refer :https://www.youtube.com/watch?v=hfn05preQYA

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
vivran22
Community Champion
Community Champion

Hey @Obeybe !

 

What do you mean by when you say modify date manually? Can you please share more details, and if possible with a sample data along with expected output?

 

https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523#M6071...

 

Cheers!
Vivek

Blog: vivran.in/my-blog
Connect on LinkedIn
Follow on Twitter

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.