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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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